pub struct ExtensionStateRecord {
pub extension_id: ExtensionId,
pub key: ExtensionStateKey,
pub scope: ExtensionStoreScope,
pub schema_version: u32,
pub value: Value,
}Fields§
§extension_id: ExtensionId§key: ExtensionStateKey§scope: ExtensionStoreScope§schema_version: u32§value: ValueTrait Implementations§
Source§impl Clone for ExtensionStateRecord
impl Clone for ExtensionStateRecord
Source§fn clone(&self) -> ExtensionStateRecord
fn clone(&self) -> ExtensionStateRecord
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ExtensionStateRecord
impl Debug for ExtensionStateRecord
Source§impl<'de> Deserialize<'de> for ExtensionStateRecord
impl<'de> Deserialize<'de> for ExtensionStateRecord
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for ExtensionStateRecord
impl PartialEq for ExtensionStateRecord
Source§fn eq(&self, other: &ExtensionStateRecord) -> bool
fn eq(&self, other: &ExtensionStateRecord) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ExtensionStateRecord
impl Serialize for ExtensionStateRecord
impl StructuralPartialEq for ExtensionStateRecord
Auto Trait Implementations§
impl Freeze for ExtensionStateRecord
impl RefUnwindSafe for ExtensionStateRecord
impl Send for ExtensionStateRecord
impl Sync for ExtensionStateRecord
impl Unpin for ExtensionStateRecord
impl UnsafeUnpin for ExtensionStateRecord
impl UnwindSafe for ExtensionStateRecord
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more