Trait houseflow_server::TokenStore[][src]

pub trait TokenStore: Send + Sync {
    fn exists<'life0, 'life1, 'async_trait>(
        &'life0 self,
        id: &'life1 TokenID
    ) -> Pin<Box<dyn Future<Output = Result<bool, Error>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        'life1: 'async_trait,
        Self: 'async_trait
;
fn get<'life0, 'life1, 'async_trait>(
        &'life0 self,
        id: &'life1 TokenID
    ) -> Pin<Box<dyn Future<Output = Result<Option<Token>, Error>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        'life1: 'async_trait,
        Self: 'async_trait
;
fn remove<'life0, 'life1, 'async_trait>(
        &'life0 self,
        id: &'life1 TokenID
    ) -> Pin<Box<dyn Future<Output = Result<bool, Error>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        'life1: 'async_trait,
        Self: 'async_trait
;
fn add<'life0, 'life1, 'async_trait>(
        &'life0 self,
        token: &'life1 Token
    ) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        'life1: 'async_trait,
        Self: 'async_trait
; }

Required methods

Implementors