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