[][src]Trait leaves::LeafDao

pub trait LeafDao {
    fn leaves<'life0, 'async_trait>(
        &'life0 self
    ) -> Pin<Box<dyn Future<Output = Result<Vec<Leaf>>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
;
fn tags<'life0, 'async_trait>(
        &'life0 self
    ) -> Pin<Box<dyn Future<Output = Result<Vec<u32>>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
;
fn update_max<'life0, 'async_trait>(
        &'life0 self,
        tag: u32
    ) -> Pin<Box<dyn Future<Output = Result<Leaf>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
;
fn update_max_by_step<'life0, 'async_trait>(
        &'life0 self,
        tag: u32,
        step: u32
    ) -> Pin<Box<dyn Future<Output = Result<Leaf>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
; }

Required methods

fn leaves<'life0, 'async_trait>(
    &'life0 self
) -> Pin<Box<dyn Future<Output = Result<Vec<Leaf>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 

fn tags<'life0, 'async_trait>(
    &'life0 self
) -> Pin<Box<dyn Future<Output = Result<Vec<u32>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 

fn update_max<'life0, 'async_trait>(
    &'life0 self,
    tag: u32
) -> Pin<Box<dyn Future<Output = Result<Leaf>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 

fn update_max_by_step<'life0, 'async_trait>(
    &'life0 self,
    tag: u32,
    step: u32
) -> Pin<Box<dyn Future<Output = Result<Leaf>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 

Loading content...

Implementors

Loading content...