Struct rust_releases::index::ReleaseIndex[][src]

pub struct ReleaseIndex { /* fields omitted */ }

A release index is a data structure holding known Rust releases. Releases are indexed from the newest to the oldest known release.

Implementations

impl ReleaseIndex[src]

pub fn from_source<S: Source>(source: S) -> TResult<Self>[src]

Create a new ReleaseIndex from a given source. Releases available in the index may vary based on the type of Source.

pub fn releases(&self) -> Vec<&Release>[src]

Trait Implementations

impl Debug for ReleaseIndex[src]

impl FromIterator<Release> for ReleaseIndex[src]

fn from_iter<T: IntoIterator<Item = Release>>(iter: T) -> Self[src]

Create a new ReleaseIndex from a given iterable.

NB: Releases should already be sorted from the newest to the oldest known release.

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.