[][src]Struct crates_index::BareIndexRepo

pub struct BareIndexRepo<'a> { /* fields omitted */ }

Implementations

impl<'a> BareIndexRepo<'a>[src]

pub fn retrieve(&mut self) -> Result<(), Error>[src]

Fetches latest from the remote index repository. Note that using this method will mean no cache entries will be used, if a new commit is fetched from the repository, as their commit version will no longer match.

pub fn crate_(&self, name: &str) -> Option<Crate>[src]

Reads a crate from the index, it will attempt to use a cached entry if one is available, otherwise it will fallback to reading the crate directly from the git blob containing the crate information.

Auto Trait Implementations

impl<'a> RefUnwindSafe for BareIndexRepo<'a>

impl<'a> !Send for BareIndexRepo<'a>

impl<'a> !Sync for BareIndexRepo<'a>

impl<'a> Unpin for BareIndexRepo<'a>

impl<'a> UnwindSafe for BareIndexRepo<'a>

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.