pub struct GresiqCredentials<'a> {
pub api_key: &'a str,
pub api_secret: &'a str,
}Expand description
API credentials for a GresIQ-managed database.
Obtain these from the smbCloud console after registering a GresIQ app.
The api_key identifies the app; the api_secret authenticates it.
Fields§
§api_key: &'a str§api_secret: &'a strTrait Implementations§
Source§impl<'a> Clone for GresiqCredentials<'a>
impl<'a> Clone for GresiqCredentials<'a>
Source§fn clone(&self) -> GresiqCredentials<'a>
fn clone(&self) -> GresiqCredentials<'a>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl<'a> Copy for GresiqCredentials<'a>
Auto Trait Implementations§
impl<'a> Freeze for GresiqCredentials<'a>
impl<'a> RefUnwindSafe for GresiqCredentials<'a>
impl<'a> Send for GresiqCredentials<'a>
impl<'a> Sync for GresiqCredentials<'a>
impl<'a> Unpin for GresiqCredentials<'a>
impl<'a> UnsafeUnpin for GresiqCredentials<'a>
impl<'a> UnwindSafe for GresiqCredentials<'a>
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