pub struct CredentialPairResponse {
pub project_id: String,
pub application_id: String,
pub user_id: String,
pub session_id: String,
pub refresh_generation: i64,
pub access_token: String,
pub refresh_token: String,
pub token_type: String,
pub expires_in: i64,
pub projection: UserProjection,
pub projection_revision: i64,
pub session_expires_at: String,
}Fields§
§project_id: String§application_id: String§user_id: String§session_id: String§refresh_generation: i64§access_token: String§refresh_token: String§token_type: String§expires_in: i64§projection: UserProjection§projection_revision: i64§session_expires_at: StringTrait Implementations§
Source§impl Clone for CredentialPairResponse
impl Clone for CredentialPairResponse
Source§fn clone(&self) -> CredentialPairResponse
fn clone(&self) -> CredentialPairResponse
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 ComposeSchema for CredentialPairResponse
impl ComposeSchema for CredentialPairResponse
Source§impl Debug for CredentialPairResponse
impl Debug for CredentialPairResponse
Source§impl<'de> Deserialize<'de> for CredentialPairResponse
impl<'de> Deserialize<'de> for CredentialPairResponse
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 CredentialPairResponse
impl PartialEq for CredentialPairResponse
Source§impl Serialize for CredentialPairResponse
impl Serialize for CredentialPairResponse
impl StructuralPartialEq for CredentialPairResponse
Auto Trait Implementations§
impl Freeze for CredentialPairResponse
impl RefUnwindSafe for CredentialPairResponse
impl Send for CredentialPairResponse
impl Sync for CredentialPairResponse
impl Unpin for CredentialPairResponse
impl UnsafeUnpin for CredentialPairResponse
impl UnwindSafe for CredentialPairResponse
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