pub struct SetIgnoreInputEvents {
pub method: SetIgnoreInputEventsMethod,
pub params: SetIgnoreInputEventsParams,
}Expand description
Ignores input events (useful while auditing page). setIgnoreInputEvents
Fields§
§method: SetIgnoreInputEventsMethod§params: SetIgnoreInputEventsParamsImplementations§
Source§impl SetIgnoreInputEvents
impl SetIgnoreInputEvents
pub fn builder() -> SetIgnoreInputEventsBuilder
Source§impl SetIgnoreInputEvents
impl SetIgnoreInputEvents
pub const IDENTIFIER: &'static str = "Input.setIgnoreInputEvents"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for SetIgnoreInputEvents
impl Clone for SetIgnoreInputEvents
Source§fn clone(&self) -> SetIgnoreInputEvents
fn clone(&self) -> SetIgnoreInputEvents
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 SetIgnoreInputEvents
impl CommandResult for SetIgnoreInputEvents
type Result = SetIgnoreInputEventsResult
fn result_from_value(result: Value) -> Result<Self::Result>
Source§impl Debug for SetIgnoreInputEvents
impl Debug for SetIgnoreInputEvents
Source§impl<'de> Deserialize<'de> for SetIgnoreInputEvents
impl<'de> Deserialize<'de> for SetIgnoreInputEvents
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<SetIgnoreInputEvents> for BrowserProtocolCommands
impl From<SetIgnoreInputEvents> for BrowserProtocolCommands
Source§fn from(v: SetIgnoreInputEvents) -> Self
fn from(v: SetIgnoreInputEvents) -> Self
Converts to this type from the input type.
Source§impl From<SetIgnoreInputEvents> for Command
impl From<SetIgnoreInputEvents> for Command
Source§fn from(v: SetIgnoreInputEvents) -> Self
fn from(v: SetIgnoreInputEvents) -> Self
Converts to this type from the input type.
Source§impl From<SetIgnoreInputEvents> for InputCommands
impl From<SetIgnoreInputEvents> for InputCommands
Source§fn from(v: SetIgnoreInputEvents) -> Self
fn from(v: SetIgnoreInputEvents) -> Self
Converts to this type from the input type.
Source§impl PartialEq for SetIgnoreInputEvents
impl PartialEq for SetIgnoreInputEvents
Source§impl Serialize for SetIgnoreInputEvents
impl Serialize for SetIgnoreInputEvents
Source§impl TryFrom<BrowserProtocolCommands> for SetIgnoreInputEvents
impl TryFrom<BrowserProtocolCommands> for SetIgnoreInputEvents
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, <SetIgnoreInputEvents as TryFrom<BrowserProtocolCommands>>::Error>
fn try_from( e: BrowserProtocolCommands, ) -> Result<Self, <SetIgnoreInputEvents as TryFrom<BrowserProtocolCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<Command> for SetIgnoreInputEvents
impl TryFrom<Command> for SetIgnoreInputEvents
Source§impl TryFrom<InputCommands> for SetIgnoreInputEvents
impl TryFrom<InputCommands> for SetIgnoreInputEvents
Source§type Error = InputCommands
type Error = InputCommands
The type returned in the event of a conversion error.
Source§fn try_from(
e: InputCommands,
) -> Result<Self, <SetIgnoreInputEvents as TryFrom<InputCommands>>::Error>
fn try_from( e: InputCommands, ) -> Result<Self, <SetIgnoreInputEvents as TryFrom<InputCommands>>::Error>
Performs the conversion.
impl StructuralPartialEq for SetIgnoreInputEvents
Auto Trait Implementations§
impl Freeze for SetIgnoreInputEvents
impl RefUnwindSafe for SetIgnoreInputEvents
impl Send for SetIgnoreInputEvents
impl Sync for SetIgnoreInputEvents
impl Unpin for SetIgnoreInputEvents
impl UnsafeUnpin for SetIgnoreInputEvents
impl UnwindSafe for SetIgnoreInputEvents
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