pub struct DirectTcpSocketChunkSent {
pub method: DirectTcpSocketChunkSentMethod,
pub params: DirectTcpSocketChunkSentParams,
}Expand description
Fired when data is sent to tcp direct socket stream. directTCPSocketChunkSent
Fields§
§method: DirectTcpSocketChunkSentMethod§params: DirectTcpSocketChunkSentParamsImplementations§
Source§impl DirectTcpSocketChunkSent
impl DirectTcpSocketChunkSent
pub const IDENTIFIER: &'static str = "Network.directTCPSocketChunkSent"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for DirectTcpSocketChunkSent
impl Clone for DirectTcpSocketChunkSent
Source§fn clone(&self) -> DirectTcpSocketChunkSent
fn clone(&self) -> DirectTcpSocketChunkSent
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 DirectTcpSocketChunkSent
impl Debug for DirectTcpSocketChunkSent
Source§impl<'de> Deserialize<'de> for DirectTcpSocketChunkSent
impl<'de> Deserialize<'de> for DirectTcpSocketChunkSent
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<DirectTcpSocketChunkSent> for BrowserProtocolEvents
impl From<DirectTcpSocketChunkSent> for BrowserProtocolEvents
Source§fn from(v: DirectTcpSocketChunkSent) -> Self
fn from(v: DirectTcpSocketChunkSent) -> Self
Converts to this type from the input type.
Source§impl From<DirectTcpSocketChunkSent> for Event
impl From<DirectTcpSocketChunkSent> for Event
Source§fn from(v: DirectTcpSocketChunkSent) -> Self
fn from(v: DirectTcpSocketChunkSent) -> Self
Converts to this type from the input type.
Source§impl From<DirectTcpSocketChunkSent> for NetworkEvents
impl From<DirectTcpSocketChunkSent> for NetworkEvents
Source§fn from(v: DirectTcpSocketChunkSent) -> Self
fn from(v: DirectTcpSocketChunkSent) -> Self
Converts to this type from the input type.
Source§impl PartialEq for DirectTcpSocketChunkSent
impl PartialEq for DirectTcpSocketChunkSent
Source§impl Serialize for DirectTcpSocketChunkSent
impl Serialize for DirectTcpSocketChunkSent
Source§impl TryFrom<BrowserProtocolEvents> for DirectTcpSocketChunkSent
impl TryFrom<BrowserProtocolEvents> for DirectTcpSocketChunkSent
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, <DirectTcpSocketChunkSent as TryFrom<BrowserProtocolEvents>>::Error>
fn try_from( e: BrowserProtocolEvents, ) -> Result<Self, <DirectTcpSocketChunkSent as TryFrom<BrowserProtocolEvents>>::Error>
Performs the conversion.
Source§impl TryFrom<Event> for DirectTcpSocketChunkSent
impl TryFrom<Event> for DirectTcpSocketChunkSent
Source§impl TryFrom<NetworkEvents> for DirectTcpSocketChunkSent
impl TryFrom<NetworkEvents> for DirectTcpSocketChunkSent
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, <DirectTcpSocketChunkSent as TryFrom<NetworkEvents>>::Error>
fn try_from( e: NetworkEvents, ) -> Result<Self, <DirectTcpSocketChunkSent as TryFrom<NetworkEvents>>::Error>
Performs the conversion.
impl StructuralPartialEq for DirectTcpSocketChunkSent
Auto Trait Implementations§
impl Freeze for DirectTcpSocketChunkSent
impl RefUnwindSafe for DirectTcpSocketChunkSent
impl Send for DirectTcpSocketChunkSent
impl Sync for DirectTcpSocketChunkSent
impl Unpin for DirectTcpSocketChunkSent
impl UnsafeUnpin for DirectTcpSocketChunkSent
impl UnwindSafe for DirectTcpSocketChunkSent
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