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