[][src]Trait cargo_fetcher::Backend

pub trait Backend: Debug {
#[must_use]    fn fetch<'life0, 'life1, 'async_trait>(
        &'life0 self,
        krate: &'life1 Krate
    ) -> Pin<Box<dyn Future<Output = Result<Bytes, Error>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        'life1: 'async_trait,
        Self: 'async_trait
;
#[must_use] fn upload<'life0, 'life1, 'async_trait>(
        &'life0 self,
        source: Bytes,
        krate: &'life1 Krate
    ) -> Pin<Box<dyn Future<Output = Result<usize, Error>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        'life1: 'async_trait,
        Self: 'async_trait
;
#[must_use] fn list<'life0, 'async_trait>(
        &'life0 self
    ) -> Pin<Box<dyn Future<Output = Result<Vec<String>, Error>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
;
#[must_use] fn updated<'life0, 'life1, 'async_trait>(
        &'life0 self,
        krate: &'life1 Krate
    ) -> Pin<Box<dyn Future<Output = Result<Option<DateTime<Utc>>, Error>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        'life1: 'async_trait,
        Self: 'async_trait
;
fn set_prefix(&mut self, prefix: &str); }

Required methods

#[must_use]fn fetch<'life0, 'life1, 'async_trait>(
    &'life0 self,
    krate: &'life1 Krate
) -> Pin<Box<dyn Future<Output = Result<Bytes, Error>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    'life1: 'async_trait,
    Self: 'async_trait, 

#[must_use]fn upload<'life0, 'life1, 'async_trait>(
    &'life0 self,
    source: Bytes,
    krate: &'life1 Krate
) -> Pin<Box<dyn Future<Output = Result<usize, Error>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    'life1: 'async_trait,
    Self: 'async_trait, 

#[must_use]fn list<'life0, 'async_trait>(
    &'life0 self
) -> Pin<Box<dyn Future<Output = Result<Vec<String>, Error>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 

#[must_use]fn updated<'life0, 'life1, 'async_trait>(
    &'life0 self,
    krate: &'life1 Krate
) -> Pin<Box<dyn Future<Output = Result<Option<DateTime<Utc>>, Error>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    'life1: 'async_trait,
    Self: 'async_trait, 

fn set_prefix(&mut self, prefix: &str)

Loading content...

Implementors

Loading content...