pub struct DirectTcpSocketOpenedParams {
pub identifier: RequestId,
pub remote_addr: String,
pub remote_port: i64,
pub timestamp: MonotonicTime,
pub local_addr: Option<String>,
pub local_port: Option<i64>,
}Expand description
Fired when direct_socket.TCPSocket connection is opened. directTCPSocketOpened
Fields§
§identifier: RequestId§remote_addr: String§remote_port: i64Expected to be unsigned integer.
timestamp: MonotonicTime§local_addr: Option<String>§local_port: Option<i64>Expected to be unsigned integer.
Trait Implementations§
Source§impl Clone for DirectTcpSocketOpenedParams
impl Clone for DirectTcpSocketOpenedParams
Source§fn clone(&self) -> DirectTcpSocketOpenedParams
fn clone(&self) -> DirectTcpSocketOpenedParams
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 DirectTcpSocketOpenedParams
impl Debug for DirectTcpSocketOpenedParams
Source§impl<'de> Deserialize<'de> for DirectTcpSocketOpenedParams
impl<'de> Deserialize<'de> for DirectTcpSocketOpenedParams
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
impl StructuralPartialEq for DirectTcpSocketOpenedParams
Auto Trait Implementations§
impl Freeze for DirectTcpSocketOpenedParams
impl RefUnwindSafe for DirectTcpSocketOpenedParams
impl Send for DirectTcpSocketOpenedParams
impl Sync for DirectTcpSocketOpenedParams
impl Unpin for DirectTcpSocketOpenedParams
impl UnsafeUnpin for DirectTcpSocketOpenedParams
impl UnwindSafe for DirectTcpSocketOpenedParams
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