pub struct BinanceWsLogonParams {
pub api_key: SmartString,
pub signature: SmartString,
pub timestamp: u64,
}Expand description
The parameters for a WebSocket logon request.
Fields§
§api_key: SmartStringThe API key for authentication.
signature: SmartStringThe signature for the request.
timestamp: u64The timestamp for the request.
Trait Implementations§
Source§impl Clone for BinanceWsLogonParams
impl Clone for BinanceWsLogonParams
Source§fn clone(&self) -> BinanceWsLogonParams
fn clone(&self) -> BinanceWsLogonParams
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 BinanceWsLogonParams
impl Debug for BinanceWsLogonParams
Auto Trait Implementations§
impl Freeze for BinanceWsLogonParams
impl RefUnwindSafe for BinanceWsLogonParams
impl Send for BinanceWsLogonParams
impl Sync for BinanceWsLogonParams
impl Unpin for BinanceWsLogonParams
impl UnwindSafe for BinanceWsLogonParams
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