[][src]Struct webext_storage::sync::SyncedExtensionChange

pub struct SyncedExtensionChange {
    pub ext_id: String,
    pub changes: String,
}

Holds a JSON-serialized map of all synced changes for an extension.

Fields

ext_id: String

The extension ID.

changes: String

The contents of a StorageChanges struct, in JSON format. We don't deserialize these because they need to be passed back to the browser as strings anyway.

Trait Implementations

impl Clone for SyncedExtensionChange[src]

impl Debug for SyncedExtensionChange[src]

impl Eq for SyncedExtensionChange[src]

impl PartialEq<SyncedExtensionChange> for SyncedExtensionChange[src]

impl StructuralEq for SyncedExtensionChange[src]

impl StructuralPartialEq for SyncedExtensionChange[src]

Auto Trait Implementations

impl RefUnwindSafe for SyncedExtensionChange

impl Send for SyncedExtensionChange

impl Sync for SyncedExtensionChange

impl Unpin for SyncedExtensionChange

impl UnwindSafe for SyncedExtensionChange

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