pub struct SetStorageBucketTracking {
pub method: SetStorageBucketTrackingMethod,
pub params: SetStorageBucketTrackingParams,
}Expand description
Set tracking for a storage key’s buckets. setStorageBucketTracking
Fields§
§method: SetStorageBucketTrackingMethod§params: SetStorageBucketTrackingParamsImplementations§
Source§impl SetStorageBucketTracking
impl SetStorageBucketTracking
pub const IDENTIFIER: &'static str = "Storage.setStorageBucketTracking"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for SetStorageBucketTracking
impl Clone for SetStorageBucketTracking
Source§fn clone(&self) -> SetStorageBucketTracking
fn clone(&self) -> SetStorageBucketTracking
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 CommandResult for SetStorageBucketTracking
impl CommandResult for SetStorageBucketTracking
type Result = SetStorageBucketTrackingResult
fn result_from_value(result: Value) -> Result<Self::Result>
Source§impl Debug for SetStorageBucketTracking
impl Debug for SetStorageBucketTracking
Source§impl<'de> Deserialize<'de> for SetStorageBucketTracking
impl<'de> Deserialize<'de> for SetStorageBucketTracking
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 From<SetStorageBucketTracking> for BrowserProtocolCommands
impl From<SetStorageBucketTracking> for BrowserProtocolCommands
Source§fn from(v: SetStorageBucketTracking) -> Self
fn from(v: SetStorageBucketTracking) -> Self
Converts to this type from the input type.
Source§impl From<SetStorageBucketTracking> for Command
impl From<SetStorageBucketTracking> for Command
Source§fn from(v: SetStorageBucketTracking) -> Self
fn from(v: SetStorageBucketTracking) -> Self
Converts to this type from the input type.
Source§impl From<SetStorageBucketTracking> for StorageCommands
impl From<SetStorageBucketTracking> for StorageCommands
Source§fn from(v: SetStorageBucketTracking) -> Self
fn from(v: SetStorageBucketTracking) -> Self
Converts to this type from the input type.
Source§impl PartialEq for SetStorageBucketTracking
impl PartialEq for SetStorageBucketTracking
Source§impl Serialize for SetStorageBucketTracking
impl Serialize for SetStorageBucketTracking
Source§impl TryFrom<BrowserProtocolCommands> for SetStorageBucketTracking
impl TryFrom<BrowserProtocolCommands> for SetStorageBucketTracking
Source§type Error = BrowserProtocolCommands
type Error = BrowserProtocolCommands
The type returned in the event of a conversion error.
Source§fn try_from(
e: BrowserProtocolCommands,
) -> Result<Self, <SetStorageBucketTracking as TryFrom<BrowserProtocolCommands>>::Error>
fn try_from( e: BrowserProtocolCommands, ) -> Result<Self, <SetStorageBucketTracking as TryFrom<BrowserProtocolCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<Command> for SetStorageBucketTracking
impl TryFrom<Command> for SetStorageBucketTracking
Source§impl TryFrom<StorageCommands> for SetStorageBucketTracking
impl TryFrom<StorageCommands> for SetStorageBucketTracking
Source§type Error = StorageCommands
type Error = StorageCommands
The type returned in the event of a conversion error.
Source§fn try_from(
e: StorageCommands,
) -> Result<Self, <SetStorageBucketTracking as TryFrom<StorageCommands>>::Error>
fn try_from( e: StorageCommands, ) -> Result<Self, <SetStorageBucketTracking as TryFrom<StorageCommands>>::Error>
Performs the conversion.
impl StructuralPartialEq for SetStorageBucketTracking
Auto Trait Implementations§
impl Freeze for SetStorageBucketTracking
impl RefUnwindSafe for SetStorageBucketTracking
impl Send for SetStorageBucketTracking
impl Sync for SetStorageBucketTracking
impl Unpin for SetStorageBucketTracking
impl UnsafeUnpin for SetStorageBucketTracking
impl UnwindSafe for SetStorageBucketTracking
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