pub struct BithumbWebSocketAuth {
pub api_key: String,
pub api_sign: String,
pub api_nonce: u64,
}Expand description
WebSocket authentication data
Fields§
§api_key: StringAPI key
api_sign: StringAPI signature
api_nonce: u64API nonce
Trait Implementations§
Source§impl Clone for BithumbWebSocketAuth
impl Clone for BithumbWebSocketAuth
Source§fn clone(&self) -> BithumbWebSocketAuth
fn clone(&self) -> BithumbWebSocketAuth
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 moreAuto Trait Implementations§
impl Freeze for BithumbWebSocketAuth
impl RefUnwindSafe for BithumbWebSocketAuth
impl Send for BithumbWebSocketAuth
impl Sync for BithumbWebSocketAuth
impl Unpin for BithumbWebSocketAuth
impl UnwindSafe for BithumbWebSocketAuth
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