pub enum CoinbaseKeyType {
Hmac(SmartString),
Ecdsa(SmartString),
}Expand description
Coinbase API key type - Advanced Trade uses ECDSA
Variants§
Hmac(SmartString)
Legacy HMAC-SHA256 (deprecated in Advanced Trade)
Ecdsa(SmartString)
ECDSA P-256 for Advanced Trade API
Trait Implementations§
Source§impl Clone for CoinbaseKeyType
impl Clone for CoinbaseKeyType
Source§fn clone(&self) -> CoinbaseKeyType
fn clone(&self) -> CoinbaseKeyType
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 CoinbaseKeyType
impl RefUnwindSafe for CoinbaseKeyType
impl Send for CoinbaseKeyType
impl Sync for CoinbaseKeyType
impl Unpin for CoinbaseKeyType
impl UnwindSafe for CoinbaseKeyType
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