[][src]Struct tabs::storage::ClientRemoteTabs

pub struct ClientRemoteTabs {
    pub client_id: String,
    pub client_name: String,
    pub device_type: DeviceType,
    pub remote_tabs: Vec<RemoteTab>,
}

Fields

client_id: Stringclient_name: Stringdevice_type: DeviceTyperemote_tabs: Vec<RemoteTab>

Implementations

impl ClientRemoteTabs[src]

fn from_record_with_remote_client(
    client_id: String,
    remote_client: &RemoteClient,
    record: TabsRecord
) -> Self
[src]

fn from_record(client_id: String, record: TabsRecord) -> Self[src]

fn to_record(&self) -> TabsRecord[src]

Trait Implementations

impl Clone for ClientRemoteTabs[src]

impl Debug for ClientRemoteTabs[src]

impl<'de> Deserialize<'de> for ClientRemoteTabs[src]

impl From<ClientRemoteTabs> for ClientTabs[src]

impl Serialize for ClientRemoteTabs[src]

Auto Trait Implementations

impl RefUnwindSafe for ClientRemoteTabs

impl Send for ClientRemoteTabs

impl Sync for ClientRemoteTabs

impl Unpin for ClientRemoteTabs

impl UnwindSafe for ClientRemoteTabs

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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