Trait rust_releases::FetchResources[][src]

pub trait FetchResources {
    type Error;
    pub fn fetch_channel(channel: Channel) -> Result<Self, Self::Error>;
}

With FetchResources, the set of inputs required to build a release index can be fetched.

Associated Types

type Error[src]

The error to be returned when a resource can not be fetched.

Loading content...

Required methods

pub fn fetch_channel(channel: Channel) -> Result<Self, Self::Error>[src]

Fetch a set of inputs for a release channel.

Loading content...

Implementors

Loading content...