pub struct GetBrowserCommandLine {
pub method: GetBrowserCommandLineMethod,
pub params: GetBrowserCommandLineParams,
}Expand description
Returns the command line switches for the browser process if, and only if –enable-automation is on the commandline. getBrowserCommandLine
Fields§
§method: GetBrowserCommandLineMethod§params: GetBrowserCommandLineParamsImplementations§
Source§impl GetBrowserCommandLine
impl GetBrowserCommandLine
pub fn builder() -> GetBrowserCommandLineBuilder
Source§impl GetBrowserCommandLine
impl GetBrowserCommandLine
pub const IDENTIFIER: &'static str = "Browser.getBrowserCommandLine"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for GetBrowserCommandLine
impl Clone for GetBrowserCommandLine
Source§fn clone(&self) -> GetBrowserCommandLine
fn clone(&self) -> GetBrowserCommandLine
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 GetBrowserCommandLine
impl CommandResult for GetBrowserCommandLine
type Result = GetBrowserCommandLineResult
fn result_from_value(result: Value) -> Result<Self::Result>
Source§impl Debug for GetBrowserCommandLine
impl Debug for GetBrowserCommandLine
Source§impl<'de> Deserialize<'de> for GetBrowserCommandLine
impl<'de> Deserialize<'de> for GetBrowserCommandLine
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<GetBrowserCommandLine> for BrowserCommands
impl From<GetBrowserCommandLine> for BrowserCommands
Source§fn from(v: GetBrowserCommandLine) -> Self
fn from(v: GetBrowserCommandLine) -> Self
Converts to this type from the input type.
Source§impl From<GetBrowserCommandLine> for BrowserProtocolCommands
impl From<GetBrowserCommandLine> for BrowserProtocolCommands
Source§fn from(v: GetBrowserCommandLine) -> Self
fn from(v: GetBrowserCommandLine) -> Self
Converts to this type from the input type.
Source§impl From<GetBrowserCommandLine> for Command
impl From<GetBrowserCommandLine> for Command
Source§fn from(v: GetBrowserCommandLine) -> Self
fn from(v: GetBrowserCommandLine) -> Self
Converts to this type from the input type.
Source§impl PartialEq for GetBrowserCommandLine
impl PartialEq for GetBrowserCommandLine
Source§impl Serialize for GetBrowserCommandLine
impl Serialize for GetBrowserCommandLine
Source§impl TryFrom<BrowserCommands> for GetBrowserCommandLine
impl TryFrom<BrowserCommands> for GetBrowserCommandLine
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, <GetBrowserCommandLine as TryFrom<BrowserCommands>>::Error>
fn try_from( e: BrowserCommands, ) -> Result<Self, <GetBrowserCommandLine as TryFrom<BrowserCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<BrowserProtocolCommands> for GetBrowserCommandLine
impl TryFrom<BrowserProtocolCommands> for GetBrowserCommandLine
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, <GetBrowserCommandLine as TryFrom<BrowserProtocolCommands>>::Error>
fn try_from( e: BrowserProtocolCommands, ) -> Result<Self, <GetBrowserCommandLine as TryFrom<BrowserProtocolCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<Command> for GetBrowserCommandLine
impl TryFrom<Command> for GetBrowserCommandLine
impl StructuralPartialEq for GetBrowserCommandLine
Auto Trait Implementations§
impl Freeze for GetBrowserCommandLine
impl RefUnwindSafe for GetBrowserCommandLine
impl Send for GetBrowserCommandLine
impl Sync for GetBrowserCommandLine
impl Unpin for GetBrowserCommandLine
impl UnsafeUnpin for GetBrowserCommandLine
impl UnwindSafe for GetBrowserCommandLine
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