Trait rust_releases_core::Source[][src]

pub trait Source {
    type Error;
    fn build_index(&self) -> Result<ReleaseIndex, Self::Error>;
}
Expand description

A Source is a set of inputs from which a release index can be built.

Associated Types

The error to be returned when an index can not be build for a source.

Required methods

Build a release index from a data set.

Implementors