Struct chrome_remote_interface_model::target::AttachedToTargetEvent[][src]

pub struct AttachedToTargetEvent { /* fields omitted */ }
This is supported on crate features Target and experimental only.

Issued when attached to target because of auto-attach or attachToTarget command.

Implementations

impl AttachedToTargetEvent[src]

pub fn new(
    session_id: SessionId,
    target_info: TargetInfo,
    waiting_for_debugger: bool
) -> Self
[src]

pub fn session_id(&self) -> &SessionId[src]

Identifier assigned to the session used to send/receive messages.

pub fn target_info(&self) -> &TargetInfo[src]

pub fn waiting_for_debugger(&self) -> bool[src]

Trait Implementations

impl Clone for AttachedToTargetEvent[src]

impl Debug for AttachedToTargetEvent[src]

impl<'de> Deserialize<'de> for AttachedToTargetEvent[src]

impl Serialize for AttachedToTargetEvent[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.