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