Trait SyncApi

Source
pub trait SyncApi: Send + Sync {
    // Required method
    fn get<'a, 'life0, 'async_trait>(
        &'life0 self,
        exclude_domains: Option<bool>,
    ) -> Pin<Box<dyn Future<Output = Result<SyncResponseModel, Error<GetError>>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'a: 'async_trait,
             'life0: 'async_trait;
}

Required Methods§

Source

fn get<'a, 'life0, 'async_trait>( &'life0 self, exclude_domains: Option<bool>, ) -> Pin<Box<dyn Future<Output = Result<SyncResponseModel, Error<GetError>>> + Send + 'async_trait>>
where Self: 'async_trait, 'a: 'async_trait, 'life0: 'async_trait,

GET /sync

Implementors§