pub struct AgentAuthRecord {
pub token_type: String,
pub access_token: String,
pub access_expires_at: String,
pub refresh_token: String,
pub refresh_expires_at: String,
}Fields§
§token_type: String§access_token: String§access_expires_at: String§refresh_token: String§refresh_expires_at: StringTrait Implementations§
Source§impl Clone for AgentAuthRecord
impl Clone for AgentAuthRecord
Source§fn clone(&self) -> AgentAuthRecord
fn clone(&self) -> AgentAuthRecord
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 AgentAuthRecord
impl Debug for AgentAuthRecord
Source§impl<'de> Deserialize<'de> for AgentAuthRecord
impl<'de> Deserialize<'de> for AgentAuthRecord
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 AgentAuthRecord
impl PartialEq for AgentAuthRecord
Source§impl Serialize for AgentAuthRecord
impl Serialize for AgentAuthRecord
impl Eq for AgentAuthRecord
impl StructuralPartialEq for AgentAuthRecord
Auto Trait Implementations§
impl Freeze for AgentAuthRecord
impl RefUnwindSafe for AgentAuthRecord
impl Send for AgentAuthRecord
impl Sync for AgentAuthRecord
impl Unpin for AgentAuthRecord
impl UnsafeUnpin for AgentAuthRecord
impl UnwindSafe for AgentAuthRecord
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