[][src]Struct sync15::SyncRequestInfo

pub struct SyncRequestInfo<'a> {
    pub engines_to_state_change: Option<&'a HashMap<String, bool>>,
    pub is_user_action: bool,
}

This is essentially a bag of information that the sync manager knows, but otherwise we won't. It should probably be rethought if it gains many more fields.

Fields

engines_to_state_change: Option<&'a HashMap<String, bool>>is_user_action: bool

Trait Implementations

impl<'a> Debug for SyncRequestInfo<'a>[src]

impl<'a> Default for SyncRequestInfo<'a>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for SyncRequestInfo<'a>

impl<'a> Send for SyncRequestInfo<'a>

impl<'a> Sync for SyncRequestInfo<'a>

impl<'a> Unpin for SyncRequestInfo<'a>

impl<'a> UnwindSafe for SyncRequestInfo<'a>

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