pub struct CoinbaseCredentials {
pub api_key: String,
pub api_secret: String,
pub passphrase: String,
}
Expand description
This struct represents the coinbase credentials
Fields§
§api_key: String
§api_secret: String
§passphrase: String
Trait Implementations§
Source§impl Clone for CoinbaseCredentials
impl Clone for CoinbaseCredentials
Source§fn clone(&self) -> CoinbaseCredentials
fn clone(&self) -> CoinbaseCredentials
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl Freeze for CoinbaseCredentials
impl RefUnwindSafe for CoinbaseCredentials
impl Send for CoinbaseCredentials
impl Sync for CoinbaseCredentials
impl Unpin for CoinbaseCredentials
impl UnwindSafe for CoinbaseCredentials
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