Skip to main content

StandbyPromoter

Trait StandbyPromoter 

pub trait StandbyPromoter: Send + Sync {
    // Required method
    fn promote<'life0, 'async_trait>(
        &'life0 self,
    ) -> Pin<Box<dyn Future<Output = StandbyPromoteOutcome> + Send + 'async_trait>>
       where 'life0: 'async_trait,
             Self: 'async_trait;
}
Expand description

Promotes a standby engine to active.

Required Methods§

fn promote<'life0, 'async_trait>( &'life0 self, ) -> Pin<Box<dyn Future<Output = StandbyPromoteOutcome> + Send + 'async_trait>>
where 'life0: 'async_trait, Self: 'async_trait,

Implementors§