[][src]Trait geozero::HttpReader

pub trait HttpReader {
#[must_use]    fn open<'life0, 'async_trait>(
        url: String,
        opts: &'life0 OpenOpts
    ) -> Pin<Box<dyn Future<Output = Result<Self>> + Send + 'async_trait>>
    where
        Self: Sized,
        'life0: 'async_trait,
        Self: 'async_trait
;
#[must_use] fn select<'life0, 'life1, 'async_trait>(
        &'life0 mut self,
        opts: &'life1 SelectOpts
    ) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        'life1: 'async_trait,
        Self: 'async_trait
;
#[must_use] fn process<'life0, 'life1, 'async_trait, P: FeatureProcessor + Send>(
        &'life0 mut self,
        processor: &'life1 mut P
    ) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>
    where
        P: 'async_trait,
        'life0: 'async_trait,
        'life1: 'async_trait,
        Self: 'async_trait
; }

Required methods

#[must_use]fn open<'life0, 'async_trait>(
    url: String,
    opts: &'life0 OpenOpts
) -> Pin<Box<dyn Future<Output = Result<Self>> + Send + 'async_trait>> where
    Self: Sized,
    'life0: 'async_trait,
    Self: 'async_trait, 

#[must_use]fn select<'life0, 'life1, 'async_trait>(
    &'life0 mut self,
    opts: &'life1 SelectOpts
) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    'life1: 'async_trait,
    Self: 'async_trait, 

#[must_use]fn process<'life0, 'life1, 'async_trait, P: FeatureProcessor + Send>(
    &'life0 mut self,
    processor: &'life1 mut P
) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>> where
    P: 'async_trait,
    'life0: 'async_trait,
    'life1: 'async_trait,
    Self: 'async_trait, 

Loading content...

Implementors

Loading content...