Struct cdp::target::AttachedToTargetEvent
[−]
[src]
pub struct AttachedToTargetEvent<'a> { pub session_id: SessionId<'a>, pub target_info: TargetInfo<'a>, pub waiting_for_debugger: bool, }
[Experimental] Issued when attached to target because of auto-attach or attachToTarget
command.
Event Target.attachedToTarget
Domain Module: cdp::target
Event Struct: cdp::target::AttachedToTargetEvent
Fields
session_id: SessionId<'a>
Identifier assigned to the session used to send/receive messages.
target_info: TargetInfo<'a>
waiting_for_debugger: bool
Trait Implementations
impl<'a> Clone for AttachedToTargetEvent<'a>
[src]
fn clone(&self) -> AttachedToTargetEvent<'a>
[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl<'a> Debug for AttachedToTargetEvent<'a>
[src]
impl<'a> PartialEq for AttachedToTargetEvent<'a>
[src]
fn eq(&self, __arg_0: &AttachedToTargetEvent<'a>) -> bool
[src]
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, __arg_0: &AttachedToTargetEvent<'a>) -> bool
[src]
This method tests for !=
.
impl<'a> CdpEvent for AttachedToTargetEvent<'a>
[src]
const EVENT_NAME: &'static str
EVENT_NAME: &'static str = "Target.attachedToTarget"
impl<'a> SerializeCdpEvent for AttachedToTargetEvent<'a>
[src]
fn event_name(&self) -> &str
[src]
fn serialize_event_params<S>(&self, serializer: S) -> Result<S::Ok, S::Error> where
S: Serializer,
[src]
S: Serializer,
impl<'de, 'a> DeserializeCdpEvent<'de> for AttachedToTargetEvent<'a>
[src]
fn deserialize_event<D>(
name: &str,
params: D
) -> Result<Result<Self, D::Error>, D> where
D: Deserializer<'de>,
[src]
name: &str,
params: D
) -> Result<Result<Self, D::Error>, D> where
D: Deserializer<'de>,