pub struct OAuthBearerGrantResponse {
pub access_token: String,
pub credential_id: String,
pub expires_at: String,
pub scopes: Vec<String>,
pub token_type: String,
pub additional: AdditionalMembers,
}Fields§
§access_token: String§credential_id: String§expires_at: String§scopes: Vec<String>§token_type: String§additional: AdditionalMembersTrait Implementations§
Source§impl Clone for OAuthBearerGrantResponse
impl Clone for OAuthBearerGrantResponse
Source§fn clone(&self) -> OAuthBearerGrantResponse
fn clone(&self) -> OAuthBearerGrantResponse
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 moreSource§impl Debug for OAuthBearerGrantResponse
impl Debug for OAuthBearerGrantResponse
Source§impl<'de> Deserialize<'de> for OAuthBearerGrantResponse
impl<'de> Deserialize<'de> for OAuthBearerGrantResponse
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
Source§impl PartialEq for OAuthBearerGrantResponse
impl PartialEq for OAuthBearerGrantResponse
Source§impl Serialize for OAuthBearerGrantResponse
impl Serialize for OAuthBearerGrantResponse
impl StructuralPartialEq for OAuthBearerGrantResponse
Auto Trait Implementations§
impl Freeze for OAuthBearerGrantResponse
impl RefUnwindSafe for OAuthBearerGrantResponse
impl Send for OAuthBearerGrantResponse
impl Sync for OAuthBearerGrantResponse
impl Unpin for OAuthBearerGrantResponse
impl UnsafeUnpin for OAuthBearerGrantResponse
impl UnwindSafe for OAuthBearerGrantResponse
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