pub struct IndexedDbContentUpdatedParams {
pub origin: String,
pub storage_key: String,
pub bucket_id: String,
pub database_name: String,
pub object_store_name: String,
}Expand description
The origin’s IndexedDB object store has been modified. indexedDBContentUpdated
Fields§
§origin: StringOrigin to update.
storage_key: StringStorage key to update.
bucket_id: StringStorage bucket to update.
database_name: StringDatabase to update.
object_store_name: StringObjectStore to update.
Trait Implementations§
Source§impl Clone for IndexedDbContentUpdatedParams
impl Clone for IndexedDbContentUpdatedParams
Source§fn clone(&self) -> IndexedDbContentUpdatedParams
fn clone(&self) -> IndexedDbContentUpdatedParams
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'de> Deserialize<'de> for IndexedDbContentUpdatedParams
impl<'de> Deserialize<'de> for IndexedDbContentUpdatedParams
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 IndexedDbContentUpdatedParams
impl PartialEq for IndexedDbContentUpdatedParams
Source§fn eq(&self, other: &IndexedDbContentUpdatedParams) -> bool
fn eq(&self, other: &IndexedDbContentUpdatedParams) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for IndexedDbContentUpdatedParams
Auto Trait Implementations§
impl Freeze for IndexedDbContentUpdatedParams
impl RefUnwindSafe for IndexedDbContentUpdatedParams
impl Send for IndexedDbContentUpdatedParams
impl Sync for IndexedDbContentUpdatedParams
impl Unpin for IndexedDbContentUpdatedParams
impl UnsafeUnpin for IndexedDbContentUpdatedParams
impl UnwindSafe for IndexedDbContentUpdatedParams
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