pub trait FetchResources
where Self: Sized,
{ type Error; // Required method 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.

Required Associated Types§

source

type Error

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

Required Methods§

source

fn fetch_channel(channel: Channel) -> Result<Self, Self::Error>

Fetch a set of inputs for a release channel.

Object Safety§

This trait is not object safe.

Implementors§