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