pub struct ServiceAccountTokenOutput {
pub access_token: String,
pub expires_at: Option<Option<i64>>,
}Fields§
§access_token: String§expires_at: Option<Option<i64>>Implementations§
Source§impl ServiceAccountTokenOutput
impl ServiceAccountTokenOutput
pub fn new(access_token: String) -> ServiceAccountTokenOutput
Trait Implementations§
Source§impl Clone for ServiceAccountTokenOutput
impl Clone for ServiceAccountTokenOutput
Source§fn clone(&self) -> ServiceAccountTokenOutput
fn clone(&self) -> ServiceAccountTokenOutput
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 ServiceAccountTokenOutput
impl Debug for ServiceAccountTokenOutput
Source§impl Default for ServiceAccountTokenOutput
impl Default for ServiceAccountTokenOutput
Source§fn default() -> ServiceAccountTokenOutput
fn default() -> ServiceAccountTokenOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ServiceAccountTokenOutput
impl<'de> Deserialize<'de> for ServiceAccountTokenOutput
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
impl StructuralPartialEq for ServiceAccountTokenOutput
Auto Trait Implementations§
impl Freeze for ServiceAccountTokenOutput
impl RefUnwindSafe for ServiceAccountTokenOutput
impl Send for ServiceAccountTokenOutput
impl Sync for ServiceAccountTokenOutput
impl Unpin for ServiceAccountTokenOutput
impl UnwindSafe for ServiceAccountTokenOutput
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