LoadSeedByCustomId

Trait LoadSeedByCustomId 

Source
pub trait LoadSeedByCustomId {
    // Required method
    fn load_seed_by_custom_id<'life0, 'life1, 'async_trait>(
        &'life0 self,
        custom_id: &'life1 CustomRequestId,
    ) -> Pin<Box<dyn Future<Output = Result<Box<dyn Named + Send + Sync>, BatchWorkspaceError>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait,
             'life1: 'async_trait;
}

Required Methods§

Source

fn load_seed_by_custom_id<'life0, 'life1, 'async_trait>( &'life0 self, custom_id: &'life1 CustomRequestId, ) -> Pin<Box<dyn Future<Output = Result<Box<dyn Named + Send + Sync>, BatchWorkspaceError>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait,

Return the original seed whose request carried custom_id.

Implementors§