pub struct AttachToTarget {
pub method: AttachToTargetMethod,
pub params: AttachToTargetParams,
}Expand description
Attaches to the target with given id. attachToTarget
Fields§
§method: AttachToTargetMethod§params: AttachToTargetParamsImplementations§
Source§impl AttachToTarget
impl AttachToTarget
pub fn builder() -> AttachToTargetBuilder
Source§impl AttachToTarget
impl AttachToTarget
pub const IDENTIFIER: &'static str = "Target.attachToTarget"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for AttachToTarget
impl Clone for AttachToTarget
Source§fn clone(&self) -> AttachToTarget
fn clone(&self) -> AttachToTarget
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 AttachToTarget
impl CommandResult for AttachToTarget
type Result = AttachToTargetResult
fn result_from_value(result: Value) -> Result<Self::Result>
Source§impl Debug for AttachToTarget
impl Debug for AttachToTarget
Source§impl<'de> Deserialize<'de> for AttachToTarget
impl<'de> Deserialize<'de> for AttachToTarget
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<AttachToTarget> for BrowserProtocolCommands
impl From<AttachToTarget> for BrowserProtocolCommands
Source§fn from(v: AttachToTarget) -> Self
fn from(v: AttachToTarget) -> Self
Converts to this type from the input type.
Source§impl From<AttachToTarget> for Command
impl From<AttachToTarget> for Command
Source§fn from(v: AttachToTarget) -> Self
fn from(v: AttachToTarget) -> Self
Converts to this type from the input type.
Source§impl From<AttachToTarget> for TargetCommands
impl From<AttachToTarget> for TargetCommands
Source§fn from(v: AttachToTarget) -> Self
fn from(v: AttachToTarget) -> Self
Converts to this type from the input type.
Source§impl PartialEq for AttachToTarget
impl PartialEq for AttachToTarget
Source§impl Serialize for AttachToTarget
impl Serialize for AttachToTarget
Source§impl TryFrom<BrowserProtocolCommands> for AttachToTarget
impl TryFrom<BrowserProtocolCommands> for AttachToTarget
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, <AttachToTarget as TryFrom<BrowserProtocolCommands>>::Error>
fn try_from( e: BrowserProtocolCommands, ) -> Result<Self, <AttachToTarget as TryFrom<BrowserProtocolCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<Command> for AttachToTarget
impl TryFrom<Command> for AttachToTarget
Source§impl TryFrom<TargetCommands> for AttachToTarget
impl TryFrom<TargetCommands> for AttachToTarget
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, <AttachToTarget as TryFrom<TargetCommands>>::Error>
fn try_from( e: TargetCommands, ) -> Result<Self, <AttachToTarget as TryFrom<TargetCommands>>::Error>
Performs the conversion.
impl StructuralPartialEq for AttachToTarget
Auto Trait Implementations§
impl Freeze for AttachToTarget
impl RefUnwindSafe for AttachToTarget
impl Send for AttachToTarget
impl Sync for AttachToTarget
impl Unpin for AttachToTarget
impl UnsafeUnpin for AttachToTarget
impl UnwindSafe for AttachToTarget
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