pub struct WebSocketFrameSentParams {
pub request_id: RequestId,
pub timestamp: MonotonicTime,
pub response: WebSocketFrame,
}Expand description
Fired when WebSocket message is sent. webSocketFrameSent
Fields§
§request_id: RequestIdRequest identifier.
timestamp: MonotonicTimeTimestamp.
response: WebSocketFrameWebSocket response data.
Trait Implementations§
Source§impl Clone for WebSocketFrameSentParams
impl Clone for WebSocketFrameSentParams
Source§fn clone(&self) -> WebSocketFrameSentParams
fn clone(&self) -> WebSocketFrameSentParams
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 WebSocketFrameSentParams
impl Debug for WebSocketFrameSentParams
Source§impl<'de> Deserialize<'de> for WebSocketFrameSentParams
impl<'de> Deserialize<'de> for WebSocketFrameSentParams
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 PartialEq for WebSocketFrameSentParams
impl PartialEq for WebSocketFrameSentParams
Source§impl Serialize for WebSocketFrameSentParams
impl Serialize for WebSocketFrameSentParams
impl StructuralPartialEq for WebSocketFrameSentParams
Auto Trait Implementations§
impl Freeze for WebSocketFrameSentParams
impl RefUnwindSafe for WebSocketFrameSentParams
impl Send for WebSocketFrameSentParams
impl Sync for WebSocketFrameSentParams
impl Unpin for WebSocketFrameSentParams
impl UnsafeUnpin for WebSocketFrameSentParams
impl UnwindSafe for WebSocketFrameSentParams
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