pub struct DirectTcpSocketChunkReceived {
pub method: DirectTcpSocketChunkReceivedMethod,
pub params: DirectTcpSocketChunkReceivedParams,
}Expand description
Fired when data is received from tcp direct socket stream. directTCPSocketChunkReceived
Fields§
§method: DirectTcpSocketChunkReceivedMethod§params: DirectTcpSocketChunkReceivedParamsImplementations§
Source§impl DirectTcpSocketChunkReceived
impl DirectTcpSocketChunkReceived
pub const IDENTIFIER: &'static str = "Network.directTCPSocketChunkReceived"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for DirectTcpSocketChunkReceived
impl Clone for DirectTcpSocketChunkReceived
Source§fn clone(&self) -> DirectTcpSocketChunkReceived
fn clone(&self) -> DirectTcpSocketChunkReceived
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 DirectTcpSocketChunkReceived
impl Debug for DirectTcpSocketChunkReceived
Source§impl<'de> Deserialize<'de> for DirectTcpSocketChunkReceived
impl<'de> Deserialize<'de> for DirectTcpSocketChunkReceived
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<DirectTcpSocketChunkReceived> for BrowserProtocolEvents
impl From<DirectTcpSocketChunkReceived> for BrowserProtocolEvents
Source§fn from(v: DirectTcpSocketChunkReceived) -> Self
fn from(v: DirectTcpSocketChunkReceived) -> Self
Converts to this type from the input type.
Source§impl From<DirectTcpSocketChunkReceived> for Event
impl From<DirectTcpSocketChunkReceived> for Event
Source§fn from(v: DirectTcpSocketChunkReceived) -> Self
fn from(v: DirectTcpSocketChunkReceived) -> Self
Converts to this type from the input type.
Source§impl From<DirectTcpSocketChunkReceived> for NetworkEvents
impl From<DirectTcpSocketChunkReceived> for NetworkEvents
Source§fn from(v: DirectTcpSocketChunkReceived) -> Self
fn from(v: DirectTcpSocketChunkReceived) -> Self
Converts to this type from the input type.
Source§impl PartialEq for DirectTcpSocketChunkReceived
impl PartialEq for DirectTcpSocketChunkReceived
Source§fn eq(&self, other: &DirectTcpSocketChunkReceived) -> bool
fn eq(&self, other: &DirectTcpSocketChunkReceived) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl TryFrom<BrowserProtocolEvents> for DirectTcpSocketChunkReceived
impl TryFrom<BrowserProtocolEvents> for DirectTcpSocketChunkReceived
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, <DirectTcpSocketChunkReceived as TryFrom<BrowserProtocolEvents>>::Error>
fn try_from( e: BrowserProtocolEvents, ) -> Result<Self, <DirectTcpSocketChunkReceived as TryFrom<BrowserProtocolEvents>>::Error>
Performs the conversion.
Source§impl TryFrom<Event> for DirectTcpSocketChunkReceived
impl TryFrom<Event> for DirectTcpSocketChunkReceived
Source§impl TryFrom<NetworkEvents> for DirectTcpSocketChunkReceived
impl TryFrom<NetworkEvents> for DirectTcpSocketChunkReceived
Source§type Error = NetworkEvents
type Error = NetworkEvents
The type returned in the event of a conversion error.
Source§fn try_from(
e: NetworkEvents,
) -> Result<Self, <DirectTcpSocketChunkReceived as TryFrom<NetworkEvents>>::Error>
fn try_from( e: NetworkEvents, ) -> Result<Self, <DirectTcpSocketChunkReceived as TryFrom<NetworkEvents>>::Error>
Performs the conversion.
impl StructuralPartialEq for DirectTcpSocketChunkReceived
Auto Trait Implementations§
impl Freeze for DirectTcpSocketChunkReceived
impl RefUnwindSafe for DirectTcpSocketChunkReceived
impl Send for DirectTcpSocketChunkReceived
impl Sync for DirectTcpSocketChunkReceived
impl Unpin for DirectTcpSocketChunkReceived
impl UnsafeUnpin for DirectTcpSocketChunkReceived
impl UnwindSafe for DirectTcpSocketChunkReceived
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