pub struct AttachToBrowserTarget {
pub method: AttachToBrowserTargetMethod,
pub params: AttachToBrowserTargetParams,
}Expand description
Attaches to the browser target, only uses flat sessionId mode. attachToBrowserTarget
Fields§
§method: AttachToBrowserTargetMethod§params: AttachToBrowserTargetParamsImplementations§
Source§impl AttachToBrowserTarget
impl AttachToBrowserTarget
pub fn builder() -> AttachToBrowserTargetBuilder
Source§impl AttachToBrowserTarget
impl AttachToBrowserTarget
pub const IDENTIFIER: &'static str = "Target.attachToBrowserTarget"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for AttachToBrowserTarget
impl Clone for AttachToBrowserTarget
Source§fn clone(&self) -> AttachToBrowserTarget
fn clone(&self) -> AttachToBrowserTarget
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 AttachToBrowserTarget
impl CommandResult for AttachToBrowserTarget
type Result = AttachToBrowserTargetResult
fn result_from_value(result: Value) -> Result<Self::Result>
Source§impl Debug for AttachToBrowserTarget
impl Debug for AttachToBrowserTarget
Source§impl<'de> Deserialize<'de> for AttachToBrowserTarget
impl<'de> Deserialize<'de> for AttachToBrowserTarget
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<AttachToBrowserTarget> for BrowserProtocolCommands
impl From<AttachToBrowserTarget> for BrowserProtocolCommands
Source§fn from(v: AttachToBrowserTarget) -> Self
fn from(v: AttachToBrowserTarget) -> Self
Converts to this type from the input type.
Source§impl From<AttachToBrowserTarget> for Command
impl From<AttachToBrowserTarget> for Command
Source§fn from(v: AttachToBrowserTarget) -> Self
fn from(v: AttachToBrowserTarget) -> Self
Converts to this type from the input type.
Source§impl From<AttachToBrowserTarget> for TargetCommands
impl From<AttachToBrowserTarget> for TargetCommands
Source§fn from(v: AttachToBrowserTarget) -> Self
fn from(v: AttachToBrowserTarget) -> Self
Converts to this type from the input type.
Source§impl PartialEq for AttachToBrowserTarget
impl PartialEq for AttachToBrowserTarget
Source§impl Serialize for AttachToBrowserTarget
impl Serialize for AttachToBrowserTarget
Source§impl TryFrom<BrowserProtocolCommands> for AttachToBrowserTarget
impl TryFrom<BrowserProtocolCommands> for AttachToBrowserTarget
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, <AttachToBrowserTarget as TryFrom<BrowserProtocolCommands>>::Error>
fn try_from( e: BrowserProtocolCommands, ) -> Result<Self, <AttachToBrowserTarget as TryFrom<BrowserProtocolCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<Command> for AttachToBrowserTarget
impl TryFrom<Command> for AttachToBrowserTarget
Source§impl TryFrom<TargetCommands> for AttachToBrowserTarget
impl TryFrom<TargetCommands> for AttachToBrowserTarget
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, <AttachToBrowserTarget as TryFrom<TargetCommands>>::Error>
fn try_from( e: TargetCommands, ) -> Result<Self, <AttachToBrowserTarget as TryFrom<TargetCommands>>::Error>
Performs the conversion.
impl StructuralPartialEq for AttachToBrowserTarget
Auto Trait Implementations§
impl Freeze for AttachToBrowserTarget
impl RefUnwindSafe for AttachToBrowserTarget
impl Send for AttachToBrowserTarget
impl Sync for AttachToBrowserTarget
impl Unpin for AttachToBrowserTarget
impl UnsafeUnpin for AttachToBrowserTarget
impl UnwindSafe for AttachToBrowserTarget
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