pub struct ExecuteBrowserCommand {
pub method: ExecuteBrowserCommandMethod,
pub params: ExecuteBrowserCommandParams,
}Expand description
Invoke custom browser commands used by telemetry. executeBrowserCommand
Fields§
§method: ExecuteBrowserCommandMethod§params: ExecuteBrowserCommandParamsImplementations§
Source§impl ExecuteBrowserCommand
impl ExecuteBrowserCommand
pub fn builder() -> ExecuteBrowserCommandBuilder
Source§impl ExecuteBrowserCommand
impl ExecuteBrowserCommand
pub const IDENTIFIER: &'static str = "Browser.executeBrowserCommand"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for ExecuteBrowserCommand
impl Clone for ExecuteBrowserCommand
Source§fn clone(&self) -> ExecuteBrowserCommand
fn clone(&self) -> ExecuteBrowserCommand
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 ExecuteBrowserCommand
impl CommandResult for ExecuteBrowserCommand
type Result = ExecuteBrowserCommandResult
fn result_from_value(result: Value) -> Result<Self::Result>
Source§impl Debug for ExecuteBrowserCommand
impl Debug for ExecuteBrowserCommand
Source§impl<'de> Deserialize<'de> for ExecuteBrowserCommand
impl<'de> Deserialize<'de> for ExecuteBrowserCommand
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<ExecuteBrowserCommand> for BrowserCommands
impl From<ExecuteBrowserCommand> for BrowserCommands
Source§fn from(v: ExecuteBrowserCommand) -> Self
fn from(v: ExecuteBrowserCommand) -> Self
Converts to this type from the input type.
Source§impl From<ExecuteBrowserCommand> for BrowserProtocolCommands
impl From<ExecuteBrowserCommand> for BrowserProtocolCommands
Source§fn from(v: ExecuteBrowserCommand) -> Self
fn from(v: ExecuteBrowserCommand) -> Self
Converts to this type from the input type.
Source§impl From<ExecuteBrowserCommand> for Command
impl From<ExecuteBrowserCommand> for Command
Source§fn from(v: ExecuteBrowserCommand) -> Self
fn from(v: ExecuteBrowserCommand) -> Self
Converts to this type from the input type.
Source§impl PartialEq for ExecuteBrowserCommand
impl PartialEq for ExecuteBrowserCommand
Source§impl Serialize for ExecuteBrowserCommand
impl Serialize for ExecuteBrowserCommand
Source§impl TryFrom<BrowserCommands> for ExecuteBrowserCommand
impl TryFrom<BrowserCommands> for ExecuteBrowserCommand
Source§type Error = BrowserCommands
type Error = BrowserCommands
The type returned in the event of a conversion error.
Source§fn try_from(
e: BrowserCommands,
) -> Result<Self, <ExecuteBrowserCommand as TryFrom<BrowserCommands>>::Error>
fn try_from( e: BrowserCommands, ) -> Result<Self, <ExecuteBrowserCommand as TryFrom<BrowserCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<BrowserProtocolCommands> for ExecuteBrowserCommand
impl TryFrom<BrowserProtocolCommands> for ExecuteBrowserCommand
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, <ExecuteBrowserCommand as TryFrom<BrowserProtocolCommands>>::Error>
fn try_from( e: BrowserProtocolCommands, ) -> Result<Self, <ExecuteBrowserCommand as TryFrom<BrowserProtocolCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<Command> for ExecuteBrowserCommand
impl TryFrom<Command> for ExecuteBrowserCommand
impl StructuralPartialEq for ExecuteBrowserCommand
Auto Trait Implementations§
impl Freeze for ExecuteBrowserCommand
impl RefUnwindSafe for ExecuteBrowserCommand
impl Send for ExecuteBrowserCommand
impl Sync for ExecuteBrowserCommand
impl Unpin for ExecuteBrowserCommand
impl UnsafeUnpin for ExecuteBrowserCommand
impl UnwindSafe for ExecuteBrowserCommand
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