Trait rust_releases_core::FetchResources[][src]

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

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

Associated Types

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

Required methods

Fetch a set of inputs for a release channel.

Implementors