pub struct ServiceAccountCredentials {
pub access_key: String,
pub secret_key: String,
pub expiration: Option<String>,
pub session_token: Option<String>,
}Fields§
§access_key: String§secret_key: String§expiration: Option<String>§session_token: Option<String>Trait Implementations§
Source§impl Clone for ServiceAccountCredentials
impl Clone for ServiceAccountCredentials
Source§fn clone(&self) -> ServiceAccountCredentials
fn clone(&self) -> ServiceAccountCredentials
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 moreSource§impl Debug for ServiceAccountCredentials
impl Debug for ServiceAccountCredentials
Source§impl<'de> Deserialize<'de> for ServiceAccountCredentials
impl<'de> Deserialize<'de> for ServiceAccountCredentials
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ServiceAccountCredentials
impl RefUnwindSafe for ServiceAccountCredentials
impl Send for ServiceAccountCredentials
impl Sync for ServiceAccountCredentials
impl Unpin for ServiceAccountCredentials
impl UnsafeUnpin for ServiceAccountCredentials
impl UnwindSafe for ServiceAccountCredentials
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