[][src]Struct sync15::coll_state::LocalCollStateMachine

pub struct LocalCollStateMachine<'state> {
    global_state: &'state GlobalState,
    root_key: &'state KeyBundle,
}

Fields

global_state: &'state GlobalStateroot_key: &'state KeyBundle

Implementations

impl<'state> LocalCollStateMachine<'state>[src]

fn advance(
    &self,
    from: LocalCollState,
    store: &dyn Store
) -> Result<LocalCollState>
[src]

fn run_and_run_as_farst_as_you_can(
    &mut self,
    store: &dyn Store
) -> Result<Option<CollState>>
[src]

pub fn get_state(
    store: &dyn Store,
    global_state: &'state GlobalState,
    root_key: &'state KeyBundle
) -> Result<Option<CollState>>
[src]

Auto Trait Implementations

impl<'state> RefUnwindSafe for LocalCollStateMachine<'state>

impl<'state> Send for LocalCollStateMachine<'state>

impl<'state> Sync for LocalCollStateMachine<'state>

impl<'state> Unpin for LocalCollStateMachine<'state>

impl<'state> UnwindSafe for LocalCollStateMachine<'state>

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> From<T> for T[src]

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

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>,