Trait ToIdSet

Source
pub trait ToIdSet {
    // Required method
    fn to_id_set<'life0, 'life1, 'async_trait>(
        &'life0 self,
        set: &'life1 NameSet,
    ) -> Pin<Box<dyn Future<Output = Result<IdSet>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait,
             'life1: 'async_trait;
}

Required Methods§

Source

fn to_id_set<'life0, 'life1, 'async_trait>( &'life0 self, set: &'life1 NameSet, ) -> Pin<Box<dyn Future<Output = Result<IdSet>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait,

Converts NameSet to IdSet.

Implementors§