pub struct OpenDevTools {
pub method: OpenDevToolsMethod,
pub params: OpenDevToolsParams,
}Expand description
Opens a DevTools window for the target. openDevTools
Fields§
§method: OpenDevToolsMethod§params: OpenDevToolsParamsImplementations§
Source§impl OpenDevTools
impl OpenDevTools
pub fn builder() -> OpenDevToolsBuilder
Source§impl OpenDevTools
impl OpenDevTools
pub const IDENTIFIER: &'static str = "Target.openDevTools"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for OpenDevTools
impl Clone for OpenDevTools
Source§fn clone(&self) -> OpenDevTools
fn clone(&self) -> OpenDevTools
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 OpenDevTools
impl CommandResult for OpenDevTools
type Result = OpenDevToolsResult
fn result_from_value(result: Value) -> Result<Self::Result>
Source§impl Debug for OpenDevTools
impl Debug for OpenDevTools
Source§impl<'de> Deserialize<'de> for OpenDevTools
impl<'de> Deserialize<'de> for OpenDevTools
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<OpenDevTools> for BrowserProtocolCommands
impl From<OpenDevTools> for BrowserProtocolCommands
Source§fn from(v: OpenDevTools) -> Self
fn from(v: OpenDevTools) -> Self
Converts to this type from the input type.
Source§impl From<OpenDevTools> for Command
impl From<OpenDevTools> for Command
Source§fn from(v: OpenDevTools) -> Self
fn from(v: OpenDevTools) -> Self
Converts to this type from the input type.
Source§impl From<OpenDevTools> for TargetCommands
impl From<OpenDevTools> for TargetCommands
Source§fn from(v: OpenDevTools) -> Self
fn from(v: OpenDevTools) -> Self
Converts to this type from the input type.
Source§impl PartialEq for OpenDevTools
impl PartialEq for OpenDevTools
Source§impl Serialize for OpenDevTools
impl Serialize for OpenDevTools
Source§impl TryFrom<BrowserProtocolCommands> for OpenDevTools
impl TryFrom<BrowserProtocolCommands> for OpenDevTools
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, <OpenDevTools as TryFrom<BrowserProtocolCommands>>::Error>
fn try_from( e: BrowserProtocolCommands, ) -> Result<Self, <OpenDevTools as TryFrom<BrowserProtocolCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<Command> for OpenDevTools
impl TryFrom<Command> for OpenDevTools
Source§impl TryFrom<TargetCommands> for OpenDevTools
impl TryFrom<TargetCommands> for OpenDevTools
Source§type Error = TargetCommands
type Error = TargetCommands
The type returned in the event of a conversion error.
Source§fn try_from(
e: TargetCommands,
) -> Result<Self, <OpenDevTools as TryFrom<TargetCommands>>::Error>
fn try_from( e: TargetCommands, ) -> Result<Self, <OpenDevTools as TryFrom<TargetCommands>>::Error>
Performs the conversion.
impl StructuralPartialEq for OpenDevTools
Auto Trait Implementations§
impl Freeze for OpenDevTools
impl RefUnwindSafe for OpenDevTools
impl Send for OpenDevTools
impl Sync for OpenDevTools
impl Unpin for OpenDevTools
impl UnsafeUnpin for OpenDevTools
impl UnwindSafe for OpenDevTools
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