pub struct ClearStorageItems {
pub method: ClearStorageItemsMethod,
pub params: ClearStorageItemsParams,
}Expand description
Clears extension storage in the given storageArea.
clearStorageItems
Fields§
§method: ClearStorageItemsMethod§params: ClearStorageItemsParamsImplementations§
Source§impl ClearStorageItems
impl ClearStorageItems
pub fn builder() -> ClearStorageItemsBuilder
Source§impl ClearStorageItems
impl ClearStorageItems
pub const IDENTIFIER: &'static str = "Extensions.clearStorageItems"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for ClearStorageItems
impl Clone for ClearStorageItems
Source§fn clone(&self) -> ClearStorageItems
fn clone(&self) -> ClearStorageItems
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 ClearStorageItems
impl CommandResult for ClearStorageItems
type Result = ClearStorageItemsResult
fn result_from_value(result: Value) -> Result<Self::Result>
Source§impl Debug for ClearStorageItems
impl Debug for ClearStorageItems
Source§impl<'de> Deserialize<'de> for ClearStorageItems
impl<'de> Deserialize<'de> for ClearStorageItems
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<ClearStorageItems> for BrowserProtocolCommands
impl From<ClearStorageItems> for BrowserProtocolCommands
Source§fn from(v: ClearStorageItems) -> Self
fn from(v: ClearStorageItems) -> Self
Converts to this type from the input type.
Source§impl From<ClearStorageItems> for Command
impl From<ClearStorageItems> for Command
Source§fn from(v: ClearStorageItems) -> Self
fn from(v: ClearStorageItems) -> Self
Converts to this type from the input type.
Source§impl From<ClearStorageItems> for ExtensionsCommands
impl From<ClearStorageItems> for ExtensionsCommands
Source§fn from(v: ClearStorageItems) -> Self
fn from(v: ClearStorageItems) -> Self
Converts to this type from the input type.
Source§impl PartialEq for ClearStorageItems
impl PartialEq for ClearStorageItems
Source§impl Serialize for ClearStorageItems
impl Serialize for ClearStorageItems
Source§impl TryFrom<BrowserProtocolCommands> for ClearStorageItems
impl TryFrom<BrowserProtocolCommands> for ClearStorageItems
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, <ClearStorageItems as TryFrom<BrowserProtocolCommands>>::Error>
fn try_from( e: BrowserProtocolCommands, ) -> Result<Self, <ClearStorageItems as TryFrom<BrowserProtocolCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<Command> for ClearStorageItems
impl TryFrom<Command> for ClearStorageItems
Source§impl TryFrom<ExtensionsCommands> for ClearStorageItems
impl TryFrom<ExtensionsCommands> for ClearStorageItems
Source§type Error = ExtensionsCommands
type Error = ExtensionsCommands
The type returned in the event of a conversion error.
Source§fn try_from(
e: ExtensionsCommands,
) -> Result<Self, <ClearStorageItems as TryFrom<ExtensionsCommands>>::Error>
fn try_from( e: ExtensionsCommands, ) -> Result<Self, <ClearStorageItems as TryFrom<ExtensionsCommands>>::Error>
Performs the conversion.
impl StructuralPartialEq for ClearStorageItems
Auto Trait Implementations§
impl Freeze for ClearStorageItems
impl RefUnwindSafe for ClearStorageItems
impl Send for ClearStorageItems
impl Sync for ClearStorageItems
impl Unpin for ClearStorageItems
impl UnsafeUnpin for ClearStorageItems
impl UnwindSafe for ClearStorageItems
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