pub trait Decidable {
    fn id<'life0, 'async_trait>(
        &'life0 self
    ) -> Pin<Box<dyn Future<Output = Id> + Send + 'async_trait>>
    where
        Self: 'async_trait,
        'life0: 'async_trait
; fn status<'life0, 'async_trait>(
        &'life0 self
    ) -> Pin<Box<dyn Future<Output = Status> + Send + 'async_trait>>
    where
        Self: 'async_trait,
        'life0: 'async_trait
; fn accept<'life0, 'async_trait>(
        &'life0 mut self
    ) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>
    where
        Self: 'async_trait,
        'life0: 'async_trait
; fn reject<'life0, 'async_trait>(
        &'life0 mut self
    ) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>
    where
        Self: 'async_trait,
        'life0: 'async_trait
; }
Expand description

Required Methods§

Returns the ID of this block’s parent.

Returns the current status.

Accepts this element.

Rejects this element.

Implementors§