pub struct EventDirectTcpSocketCreated {
pub identifier: RequestId,
pub remote_addr: String,
pub remote_port: i64,
pub options: DirectTcpSocketOptions,
pub timestamp: MonotonicTime,
pub initiator: Option<Initiator>,
}Expand description
Fired upon direct_socket.TCPSocket creation. directTCPSocketCreated
Fields§
§identifier: RequestId§remote_addr: String§remote_port: i64Unsigned int 16.
options: DirectTcpSocketOptions§timestamp: MonotonicTime§initiator: Option<Initiator>Implementations§
Source§impl EventDirectTcpSocketCreated
impl EventDirectTcpSocketCreated
pub const IDENTIFIER: &'static str = "Network.directTCPSocketCreated"
Trait Implementations§
Source§impl Clone for EventDirectTcpSocketCreated
impl Clone for EventDirectTcpSocketCreated
Source§fn clone(&self) -> EventDirectTcpSocketCreated
fn clone(&self) -> EventDirectTcpSocketCreated
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 EventDirectTcpSocketCreated
impl Debug for EventDirectTcpSocketCreated
Source§impl<'de> Deserialize<'de> for EventDirectTcpSocketCreated
impl<'de> Deserialize<'de> for EventDirectTcpSocketCreated
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<EventDirectTcpSocketCreated> for CdpEvent
impl From<EventDirectTcpSocketCreated> for CdpEvent
Source§fn from(el: EventDirectTcpSocketCreated) -> CdpEvent
fn from(el: EventDirectTcpSocketCreated) -> CdpEvent
Converts to this type from the input type.
Source§impl IntoEventKind for EventDirectTcpSocketCreated
impl IntoEventKind for EventDirectTcpSocketCreated
Source§fn event_kind() -> EventKindwhere
Self: Sized + 'static,
fn event_kind() -> EventKindwhere
Self: Sized + 'static,
What kind of event this type is
Source§impl Method for EventDirectTcpSocketCreated
impl Method for EventDirectTcpSocketCreated
Source§fn identifier(&self) -> MethodId
fn identifier(&self) -> MethodId
The whole string identifier for this method like:
DOM.removeNodeSource§fn domain_name(&self) -> Cow<'static, str>
fn domain_name(&self) -> Cow<'static, str>
The name of the domain this method belongs to:
DOMSource§fn method_name(&self) -> Cow<'static, str>
fn method_name(&self) -> Cow<'static, str>
The standalone identifier of the method inside the domain:
removeNodeimpl StructuralPartialEq for EventDirectTcpSocketCreated
Auto Trait Implementations§
impl Freeze for EventDirectTcpSocketCreated
impl RefUnwindSafe for EventDirectTcpSocketCreated
impl Send for EventDirectTcpSocketCreated
impl Sync for EventDirectTcpSocketCreated
impl Unpin for EventDirectTcpSocketCreated
impl UnwindSafe for EventDirectTcpSocketCreated
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