pub struct BinanceWsLogonMessage {
pub id: SmartString,
pub method: SmartString,
pub params: BinanceWsLogonParams,
}Expand description
WebSocket session logon message for Binance
Fields§
§id: SmartStringA unique identifier for the request.
method: SmartStringThe method to be called, e.g., session.logon.
params: BinanceWsLogonParamsThe parameters for the logon request.
Trait Implementations§
Source§impl Clone for BinanceWsLogonMessage
impl Clone for BinanceWsLogonMessage
Source§fn clone(&self) -> BinanceWsLogonMessage
fn clone(&self) -> BinanceWsLogonMessage
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 BinanceWsLogonMessage
impl Debug for BinanceWsLogonMessage
Auto Trait Implementations§
impl Freeze for BinanceWsLogonMessage
impl RefUnwindSafe for BinanceWsLogonMessage
impl Send for BinanceWsLogonMessage
impl Sync for BinanceWsLogonMessage
impl Unpin for BinanceWsLogonMessage
impl UnwindSafe for BinanceWsLogonMessage
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