meta_srv::procedure::region_migration

Trait State

Source
pub(crate) trait State:
    Sync
    + Send
    + Debug
    + Serialize
    + Deserialize {
    // Required methods
    fn next<'life0, 'life1, 'async_trait>(
        &'life0 mut self,
        ctx: &'life1 mut Context,
    ) -> Pin<Box<dyn Future<Output = Result<(Box<dyn State>, Status)>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait,
             'life1: 'async_trait;
    fn as_any(&self) -> &dyn Any;

    // Provided method
    fn name(&self) -> &'static str { ... }
}

Required Methods§

Source

fn next<'life0, 'life1, 'async_trait>( &'life0 mut self, ctx: &'life1 mut Context, ) -> Pin<Box<dyn Future<Output = Result<(Box<dyn State>, Status)>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait,

Yields the next State and Status.

Source

fn as_any(&self) -> &dyn Any

Returns as Any.

Provided Methods§

Source

fn name(&self) -> &'static str

Trait Implementations§

Source§

impl<'typetag> Serialize for dyn State + 'typetag

Source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
where S: Serializer,

Serialize this value into the given Serde serializer. Read more
Source§

impl<'typetag> Serialize for dyn State + Send + 'typetag

Source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
where S: Serializer,

Serialize this value into the given Serde serializer. Read more
Source§

impl<'typetag> Serialize for dyn State + Send + Sync + 'typetag

Source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
where S: Serializer,

Serialize this value into the given Serde serializer. Read more
Source§

impl<'typetag> Serialize for dyn State + Sync + 'typetag

Source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
where S: Serializer,

Serialize this value into the given Serde serializer. Read more

Implementors§