pub struct ClearDataForOrigin {
pub method: ClearDataForOriginMethod,
pub params: ClearDataForOriginParams,
}Expand description
Clears storage for origin. clearDataForOrigin
Fields§
§method: ClearDataForOriginMethod§params: ClearDataForOriginParamsImplementations§
Source§impl ClearDataForOrigin
impl ClearDataForOrigin
pub fn builder() -> ClearDataForOriginBuilder
Source§impl ClearDataForOrigin
impl ClearDataForOrigin
pub const IDENTIFIER: &'static str = "Storage.clearDataForOrigin"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for ClearDataForOrigin
impl Clone for ClearDataForOrigin
Source§fn clone(&self) -> ClearDataForOrigin
fn clone(&self) -> ClearDataForOrigin
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 ClearDataForOrigin
impl CommandResult for ClearDataForOrigin
type Result = ClearDataForOriginResult
fn result_from_value(result: Value) -> Result<Self::Result>
Source§impl Debug for ClearDataForOrigin
impl Debug for ClearDataForOrigin
Source§impl<'de> Deserialize<'de> for ClearDataForOrigin
impl<'de> Deserialize<'de> for ClearDataForOrigin
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<ClearDataForOrigin> for BrowserProtocolCommands
impl From<ClearDataForOrigin> for BrowserProtocolCommands
Source§fn from(v: ClearDataForOrigin) -> Self
fn from(v: ClearDataForOrigin) -> Self
Converts to this type from the input type.
Source§impl From<ClearDataForOrigin> for Command
impl From<ClearDataForOrigin> for Command
Source§fn from(v: ClearDataForOrigin) -> Self
fn from(v: ClearDataForOrigin) -> Self
Converts to this type from the input type.
Source§impl From<ClearDataForOrigin> for StorageCommands
impl From<ClearDataForOrigin> for StorageCommands
Source§fn from(v: ClearDataForOrigin) -> Self
fn from(v: ClearDataForOrigin) -> Self
Converts to this type from the input type.
Source§impl PartialEq for ClearDataForOrigin
impl PartialEq for ClearDataForOrigin
Source§impl Serialize for ClearDataForOrigin
impl Serialize for ClearDataForOrigin
Source§impl TryFrom<BrowserProtocolCommands> for ClearDataForOrigin
impl TryFrom<BrowserProtocolCommands> for ClearDataForOrigin
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, <ClearDataForOrigin as TryFrom<BrowserProtocolCommands>>::Error>
fn try_from( e: BrowserProtocolCommands, ) -> Result<Self, <ClearDataForOrigin as TryFrom<BrowserProtocolCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<Command> for ClearDataForOrigin
impl TryFrom<Command> for ClearDataForOrigin
Source§impl TryFrom<StorageCommands> for ClearDataForOrigin
impl TryFrom<StorageCommands> for ClearDataForOrigin
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, <ClearDataForOrigin as TryFrom<StorageCommands>>::Error>
fn try_from( e: StorageCommands, ) -> Result<Self, <ClearDataForOrigin as TryFrom<StorageCommands>>::Error>
Performs the conversion.
impl StructuralPartialEq for ClearDataForOrigin
Auto Trait Implementations§
impl Freeze for ClearDataForOrigin
impl RefUnwindSafe for ClearDataForOrigin
impl Send for ClearDataForOrigin
impl Sync for ClearDataForOrigin
impl Unpin for ClearDataForOrigin
impl UnsafeUnpin for ClearDataForOrigin
impl UnwindSafe for ClearDataForOrigin
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