Trait GDTrait

Source
pub trait GDTrait {
    // Required methods
    fn unit_check(&self);
    fn dedup<'life0, 'life1, 'async_trait>(
        &'life0 mut self,
        buf: &'life1 U8SRep,
    ) -> Pin<Box<dyn Future<Output = Result<Deduped>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait,
             'life1: 'async_trait;
    fn dup<'life0, 'life1, 'async_trait>(
        &'life0 mut self,
        deduped: &'life1 Deduped,
    ) -> Pin<Box<dyn Future<Output = Result<U8VRep>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait,
             'life1: 'async_trait;
}

Required Methods§

Source

fn unit_check(&self)

Source

fn dedup<'life0, 'life1, 'async_trait>( &'life0 mut self, buf: &'life1 U8SRep, ) -> Pin<Box<dyn Future<Output = Result<Deduped>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait,

Source

fn dup<'life0, 'life1, 'async_trait>( &'life0 mut self, deduped: &'life1 Deduped, ) -> Pin<Box<dyn Future<Output = Result<U8VRep>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait,

Implementors§