pub trait HasUrls {
    // Required method
    fn urls(&self) -> Vec<Url>;
}
Expand description

This trait guarantees that a particular type has urls that can be extracted from it. This trait essentially ensures that the results returned by the AuctionResultsProvider trait includes a list of urls for the builders that HotShot must request from.

Required Methods§

source

fn urls(&self) -> Vec<Url>

Returns the builer url associated with the datatype

Implementors§