pub struct SetAutomationOverride {
pub method: SetAutomationOverrideMethod,
pub params: SetAutomationOverrideParams,
}Expand description
Allows overriding the automation flag. setAutomationOverride
Fields§
§method: SetAutomationOverrideMethod§params: SetAutomationOverrideParamsImplementations§
Source§impl SetAutomationOverride
impl SetAutomationOverride
pub fn builder() -> SetAutomationOverrideBuilder
Source§impl SetAutomationOverride
impl SetAutomationOverride
pub const IDENTIFIER: &'static str = "Emulation.setAutomationOverride"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for SetAutomationOverride
impl Clone for SetAutomationOverride
Source§fn clone(&self) -> SetAutomationOverride
fn clone(&self) -> SetAutomationOverride
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 SetAutomationOverride
impl CommandResult for SetAutomationOverride
type Result = SetAutomationOverrideResult
fn result_from_value(result: Value) -> Result<Self::Result>
Source§impl Debug for SetAutomationOverride
impl Debug for SetAutomationOverride
Source§impl<'de> Deserialize<'de> for SetAutomationOverride
impl<'de> Deserialize<'de> for SetAutomationOverride
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<SetAutomationOverride> for BrowserProtocolCommands
impl From<SetAutomationOverride> for BrowserProtocolCommands
Source§fn from(v: SetAutomationOverride) -> Self
fn from(v: SetAutomationOverride) -> Self
Converts to this type from the input type.
Source§impl From<SetAutomationOverride> for Command
impl From<SetAutomationOverride> for Command
Source§fn from(v: SetAutomationOverride) -> Self
fn from(v: SetAutomationOverride) -> Self
Converts to this type from the input type.
Source§impl From<SetAutomationOverride> for EmulationCommands
impl From<SetAutomationOverride> for EmulationCommands
Source§fn from(v: SetAutomationOverride) -> Self
fn from(v: SetAutomationOverride) -> Self
Converts to this type from the input type.
Source§impl PartialEq for SetAutomationOverride
impl PartialEq for SetAutomationOverride
Source§impl Serialize for SetAutomationOverride
impl Serialize for SetAutomationOverride
Source§impl TryFrom<BrowserProtocolCommands> for SetAutomationOverride
impl TryFrom<BrowserProtocolCommands> for SetAutomationOverride
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, <SetAutomationOverride as TryFrom<BrowserProtocolCommands>>::Error>
fn try_from( e: BrowserProtocolCommands, ) -> Result<Self, <SetAutomationOverride as TryFrom<BrowserProtocolCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<Command> for SetAutomationOverride
impl TryFrom<Command> for SetAutomationOverride
Source§impl TryFrom<EmulationCommands> for SetAutomationOverride
impl TryFrom<EmulationCommands> for SetAutomationOverride
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, <SetAutomationOverride as TryFrom<EmulationCommands>>::Error>
fn try_from( e: EmulationCommands, ) -> Result<Self, <SetAutomationOverride as TryFrom<EmulationCommands>>::Error>
Performs the conversion.
impl StructuralPartialEq for SetAutomationOverride
Auto Trait Implementations§
impl Freeze for SetAutomationOverride
impl RefUnwindSafe for SetAutomationOverride
impl Send for SetAutomationOverride
impl Sync for SetAutomationOverride
impl Unpin for SetAutomationOverride
impl UnsafeUnpin for SetAutomationOverride
impl UnwindSafe for SetAutomationOverride
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