pub struct BybitWsAuthMessage {
pub req_id: Option<SmartString>,
pub op: SmartString,
pub args: [SmartString; 3],
}Expand description
WebSocket authentication message for Bybit V5
Fields§
§req_id: Option<SmartString>Optional request ID to correlate requests and responses.
op: SmartStringThe operation to be performed.
args: [SmartString; 3]The arguments for the authentication request: API key, expires timestamp, and signature.
Trait Implementations§
Source§impl Clone for BybitWsAuthMessage
impl Clone for BybitWsAuthMessage
Source§fn clone(&self) -> BybitWsAuthMessage
fn clone(&self) -> BybitWsAuthMessage
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for BybitWsAuthMessage
impl Debug for BybitWsAuthMessage
Auto Trait Implementations§
impl Freeze for BybitWsAuthMessage
impl RefUnwindSafe for BybitWsAuthMessage
impl Send for BybitWsAuthMessage
impl Sync for BybitWsAuthMessage
impl Unpin for BybitWsAuthMessage
impl UnwindSafe for BybitWsAuthMessage
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