pub struct ClearIdleOverride {
pub method: ClearIdleOverrideMethod,
pub params: ClearIdleOverrideParams,
}Expand description
Clears Idle state overrides. clearIdleOverride
Fields§
§method: ClearIdleOverrideMethod§params: ClearIdleOverrideParamsImplementations§
Source§impl ClearIdleOverride
impl ClearIdleOverride
pub fn builder() -> ClearIdleOverrideBuilder
Source§impl ClearIdleOverride
impl ClearIdleOverride
pub const IDENTIFIER: &'static str = "Emulation.clearIdleOverride"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for ClearIdleOverride
impl Clone for ClearIdleOverride
Source§fn clone(&self) -> ClearIdleOverride
fn clone(&self) -> ClearIdleOverride
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 ClearIdleOverride
impl CommandResult for ClearIdleOverride
type Result = ClearIdleOverrideResult
fn result_from_value(result: Value) -> Result<Self::Result>
Source§impl Debug for ClearIdleOverride
impl Debug for ClearIdleOverride
Source§impl<'de> Deserialize<'de> for ClearIdleOverride
impl<'de> Deserialize<'de> for ClearIdleOverride
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<ClearIdleOverride> for BrowserProtocolCommands
impl From<ClearIdleOverride> for BrowserProtocolCommands
Source§fn from(v: ClearIdleOverride) -> Self
fn from(v: ClearIdleOverride) -> Self
Converts to this type from the input type.
Source§impl From<ClearIdleOverride> for Command
impl From<ClearIdleOverride> for Command
Source§fn from(v: ClearIdleOverride) -> Self
fn from(v: ClearIdleOverride) -> Self
Converts to this type from the input type.
Source§impl From<ClearIdleOverride> for EmulationCommands
impl From<ClearIdleOverride> for EmulationCommands
Source§fn from(v: ClearIdleOverride) -> Self
fn from(v: ClearIdleOverride) -> Self
Converts to this type from the input type.
Source§impl PartialEq for ClearIdleOverride
impl PartialEq for ClearIdleOverride
Source§impl Serialize for ClearIdleOverride
impl Serialize for ClearIdleOverride
Source§impl TryFrom<BrowserProtocolCommands> for ClearIdleOverride
impl TryFrom<BrowserProtocolCommands> for ClearIdleOverride
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, <ClearIdleOverride as TryFrom<BrowserProtocolCommands>>::Error>
fn try_from( e: BrowserProtocolCommands, ) -> Result<Self, <ClearIdleOverride as TryFrom<BrowserProtocolCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<Command> for ClearIdleOverride
impl TryFrom<Command> for ClearIdleOverride
Source§impl TryFrom<EmulationCommands> for ClearIdleOverride
impl TryFrom<EmulationCommands> for ClearIdleOverride
Source§type Error = EmulationCommands
type Error = EmulationCommands
The type returned in the event of a conversion error.
Source§fn try_from(
e: EmulationCommands,
) -> Result<Self, <ClearIdleOverride as TryFrom<EmulationCommands>>::Error>
fn try_from( e: EmulationCommands, ) -> Result<Self, <ClearIdleOverride as TryFrom<EmulationCommands>>::Error>
Performs the conversion.
impl StructuralPartialEq for ClearIdleOverride
Auto Trait Implementations§
impl Freeze for ClearIdleOverride
impl RefUnwindSafe for ClearIdleOverride
impl Send for ClearIdleOverride
impl Sync for ClearIdleOverride
impl Unpin for ClearIdleOverride
impl UnsafeUnpin for ClearIdleOverride
impl UnwindSafe for ClearIdleOverride
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