pub struct AttachedToTarget {
pub method: AttachedToTargetMethod,
pub params: AttachedToTargetParams,
}Expand description
Issued when attached to target because of auto-attach or attachToTarget command.
attachedToTarget
Fields§
§method: AttachedToTargetMethod§params: AttachedToTargetParamsImplementations§
Source§impl AttachedToTarget
impl AttachedToTarget
pub const IDENTIFIER: &'static str = "Target.attachedToTarget"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for AttachedToTarget
impl Clone for AttachedToTarget
Source§fn clone(&self) -> AttachedToTarget
fn clone(&self) -> AttachedToTarget
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 Debug for AttachedToTarget
impl Debug for AttachedToTarget
Source§impl<'de> Deserialize<'de> for AttachedToTarget
impl<'de> Deserialize<'de> for AttachedToTarget
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<AttachedToTarget> for BrowserProtocolEvents
impl From<AttachedToTarget> for BrowserProtocolEvents
Source§fn from(v: AttachedToTarget) -> Self
fn from(v: AttachedToTarget) -> Self
Converts to this type from the input type.
Source§impl From<AttachedToTarget> for Event
impl From<AttachedToTarget> for Event
Source§fn from(v: AttachedToTarget) -> Self
fn from(v: AttachedToTarget) -> Self
Converts to this type from the input type.
Source§impl From<AttachedToTarget> for TargetEvents
impl From<AttachedToTarget> for TargetEvents
Source§fn from(v: AttachedToTarget) -> Self
fn from(v: AttachedToTarget) -> Self
Converts to this type from the input type.
Source§impl PartialEq for AttachedToTarget
impl PartialEq for AttachedToTarget
Source§impl Serialize for AttachedToTarget
impl Serialize for AttachedToTarget
Source§impl TryFrom<BrowserProtocolEvents> for AttachedToTarget
impl TryFrom<BrowserProtocolEvents> for AttachedToTarget
Source§type Error = BrowserProtocolEvents
type Error = BrowserProtocolEvents
The type returned in the event of a conversion error.
Source§fn try_from(
e: BrowserProtocolEvents,
) -> Result<Self, <AttachedToTarget as TryFrom<BrowserProtocolEvents>>::Error>
fn try_from( e: BrowserProtocolEvents, ) -> Result<Self, <AttachedToTarget as TryFrom<BrowserProtocolEvents>>::Error>
Performs the conversion.
Source§impl TryFrom<Event> for AttachedToTarget
impl TryFrom<Event> for AttachedToTarget
Source§impl TryFrom<TargetEvents> for AttachedToTarget
impl TryFrom<TargetEvents> for AttachedToTarget
Source§type Error = TargetEvents
type Error = TargetEvents
The type returned in the event of a conversion error.
Source§fn try_from(
e: TargetEvents,
) -> Result<Self, <AttachedToTarget as TryFrom<TargetEvents>>::Error>
fn try_from( e: TargetEvents, ) -> Result<Self, <AttachedToTarget as TryFrom<TargetEvents>>::Error>
Performs the conversion.
impl StructuralPartialEq for AttachedToTarget
Auto Trait Implementations§
impl Freeze for AttachedToTarget
impl RefUnwindSafe for AttachedToTarget
impl Send for AttachedToTarget
impl Sync for AttachedToTarget
impl Unpin for AttachedToTarget
impl UnsafeUnpin for AttachedToTarget
impl UnwindSafe for AttachedToTarget
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