pub struct ApiCredentials {
pub api_key: String,
pub access_token: String,
}Expand description
API credentials for a single Kite Connect account
Fields§
§api_key: String§access_token: StringImplementations§
Trait Implementations§
Source§impl Clone for ApiCredentials
impl Clone for ApiCredentials
Source§fn clone(&self) -> ApiCredentials
fn clone(&self) -> ApiCredentials
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 ApiCredentials
impl RefUnwindSafe for ApiCredentials
impl Send for ApiCredentials
impl Sync for ApiCredentials
impl Unpin for ApiCredentials
impl UnwindSafe for ApiCredentials
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