[][src]Struct exonum_supervisor::MigrationState

#[non_exhaustive]pub struct MigrationState {
    pub inner: AsyncEventState,
    pub version: Version,
    // some fields omitted
}

State of a migration.

Fields (Non-exhaustive)

Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.
inner: AsyncEventState

Migration process state.

version: Version

Current artifact data version.

Methods

impl MigrationState[src]

pub fn new(inner: AsyncEventState, version: Version) -> Self[src]

Creates a new MigrationState object.

pub fn add_state_hash(&mut self, state_hash: Hash) -> Result<(), ExecutionError>[src]

Adds a new state hash to the migration state. If this is a first hash, the expected_hash value will be initialized. Otherwise, provided hash will be compared to expected_hash.

pub fn is_failed(&self) -> bool[src]

Checks whether migration is failed.

pub fn is_pending(&self) -> bool[src]

Checks whether migration is pending.

pub fn update(&mut self, new_state: AsyncEventState, version: Version)[src]

Updates migration state to the new state and artifact.

pub fn fail(&mut self, new_state: AsyncEventState)[src]

Marks migration as failed.

Trait Implementations

impl BinaryValue for MigrationState[src]

impl Clone for MigrationState[src]

impl Debug for MigrationState[src]

impl<'de> Deserialize<'de> for MigrationState[src]

impl ProtobufConvert for MigrationState[src]

type ProtoStruct = MigrationState

Type generated from the Protobuf definition.

impl Serialize for MigrationState[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,