pub struct WsAuthRequest {
pub req_id: String,
pub op: String,
pub args: Vec<Value>,
}Expand description
WebSocket authentication request.
Fields§
§req_id: StringRequest ID
op: StringOperation type
args: Vec<Value>Arguments [api_key, expires, signature]
Trait Implementations§
Source§impl Clone for WsAuthRequest
impl Clone for WsAuthRequest
Source§fn clone(&self) -> WsAuthRequest
fn clone(&self) -> WsAuthRequest
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 WsAuthRequest
impl Debug for WsAuthRequest
Auto Trait Implementations§
impl Freeze for WsAuthRequest
impl RefUnwindSafe for WsAuthRequest
impl Send for WsAuthRequest
impl Sync for WsAuthRequest
impl Unpin for WsAuthRequest
impl UnsafeUnpin for WsAuthRequest
impl UnwindSafe for WsAuthRequest
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