Skip to main content

StorageStateMut

Struct StorageStateMut 

Source
pub struct StorageStateMut<'a, Backend>(/* private fields */);
Expand description

Generic State backend for a mutable shared-state guard.

Trait Implementations§

Source§

impl<'a, Backend> MayTransition for StorageStateMut<'a, Backend>
where Backend: SharedStorageView + 'a,

Source§

fn complete_transition<T, From, To, Args>( state: State<Self, T, From>, _args: Args, _callsite: TransitionCallsite, ) -> State<Self, T, To>
where T: StateMachineImpl, From: StateTrait, To: ConcreteStateTrait, T::Standin: Transition<From, To>, <T::Standin as Transition<From, To>>::F: TransitionSignature<Args>,

Retags a state after checking that Args matches the declared transition signature. Read more
Source§

impl<'a, Backend> SMut for StorageStateMut<'a, Backend>
where Backend: SharedStorageView + 'a,

Source§

fn s_mut<T, S>(inner: &mut Self::Inner<T, S>) -> &mut T

Mutably borrows the runtime implementation from this storage backend.
Source§

impl<'a, Backend> SRef for StorageStateMut<'a, Backend>
where Backend: SharedStorageView + 'a,

Source§

fn s_ref<T, S>(inner: &Self::Inner<T, S>) -> &T

Borrows the runtime implementation from this storage backend.
Source§

impl<'a, Backend> StateStorage for StorageStateMut<'a, Backend>
where Backend: SharedStorageView + 'a,

Source§

type Inference = InnerInference

Selects how SDiscriminated recovers the current state marker.
Source§

type Inner<T, S> = StateMut<<Backend as SharedStorageView>::WriteGuard<'a, T>, T, S> where T: StateMachineImpl

Concrete state representation used by this storage backend.
Source§

type Machine<T> = T where T: StateMachineImpl

Type that carries the state-machine implementation contract.

Auto Trait Implementations§

§

impl<'a, Backend> Freeze for StorageStateMut<'a, Backend>

§

impl<'a, Backend> RefUnwindSafe for StorageStateMut<'a, Backend>
where Backend: RefUnwindSafe,

§

impl<'a, Backend> Send for StorageStateMut<'a, Backend>
where Backend: Sync,

§

impl<'a, Backend> StateClone for StorageStateMut<'a, Backend>
where Backend: StateClone,

§

impl<'a, Backend> StateCopy for StorageStateMut<'a, Backend>
where Backend: StateCopy,

§

impl<'a, Backend> Sync for StorageStateMut<'a, Backend>
where Backend: Sync,

§

impl<'a, Backend> Unpin for StorageStateMut<'a, Backend>

§

impl<'a, Backend> UnsafeUnpin for StorageStateMut<'a, Backend>

§

impl<'a, Backend> UnwindSafe for StorageStateMut<'a, Backend>
where Backend: RefUnwindSafe,

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.