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