Skip to main content

StorageStateRef

Struct StorageStateRef 

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

Generic State backend for an immutable shared-state guard.

This storage can expose &T through SRef, but it cannot expose &mut T and therefore does not implement SMut. A State<StorageStateRef<...>> is useful for read-only methods such as fn endpoint(self: &State<impl SRef, Self, impl InOnline>) -> &str, but it cannot be transitioned by the generated transition! macro.

Trait Implementations§

Source§

impl<'a, Backend> SRef for StorageStateRef<'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 StorageStateRef<'a, Backend>
where Backend: SharedStorageView + 'a,

Source§

type Inference = InnerInference

Selects how SDiscriminated recovers the current state marker.
Source§

type Inner<T, S> = StateRef<<Backend as SharedStorageView>::ReadGuard<'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 StorageStateRef<'a, Backend>

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

impl<'a, Backend> UnwindSafe for StorageStateRef<'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.