[][src]Struct tabs::TabsStore

pub struct TabsStore<'a> {
    storage: &'a TabsStorage,
    remote_clients: RefCell<HashMap<String, RemoteClient>>,
    last_sync: Cell<Option<ServerTimestamp>>,
    sync_store_assoc: RefCell<StoreSyncAssociation>,
    pub(crate) local_id: RefCell<String>,
}

Fields

storage: &'a TabsStorageremote_clients: RefCell<HashMap<String, RemoteClient>>last_sync: Cell<Option<ServerTimestamp>>sync_store_assoc: RefCell<StoreSyncAssociation>local_id: RefCell<String>

Implementations

impl<'a> TabsStore<'a>[src]

pub fn new(storage: &'a TabsStorage) -> Self[src]

Trait Implementations

impl<'a> Store for TabsStore<'a>[src]

Auto Trait Implementations

impl<'a> !RefUnwindSafe for TabsStore<'a>

impl<'a> !Send for TabsStore<'a>

impl<'a> !Sync for TabsStore<'a>

impl<'a> Unpin for TabsStore<'a>

impl<'a> !UnwindSafe for TabsStore<'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>,