pub struct LanAgentCliTokenResponse {
pub access_token: String,
pub expires_in: i64,
pub token_type: String,
}Expand description
LanAgentCliTokenResponse
JSON schema
{
"type": "object",
"required": [
"access_token",
"expires_in",
"token_type"
],
"properties": {
"access_token": {
"type": "string"
},
"expires_in": {
"type": "integer",
"format": "int64",
"minimum": 0.0
},
"token_type": {
"type": "string"
}
}
}Fields§
§access_token: String§expires_in: i64§token_type: StringTrait Implementations§
Source§impl Clone for LanAgentCliTokenResponse
impl Clone for LanAgentCliTokenResponse
Source§fn clone(&self) -> LanAgentCliTokenResponse
fn clone(&self) -> LanAgentCliTokenResponse
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 LanAgentCliTokenResponse
impl Debug for LanAgentCliTokenResponse
Source§impl<'de> Deserialize<'de> for LanAgentCliTokenResponse
impl<'de> Deserialize<'de> for LanAgentCliTokenResponse
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 LanAgentCliTokenResponse
impl RefUnwindSafe for LanAgentCliTokenResponse
impl Send for LanAgentCliTokenResponse
impl Sync for LanAgentCliTokenResponse
impl Unpin for LanAgentCliTokenResponse
impl UnsafeUnpin for LanAgentCliTokenResponse
impl UnwindSafe for LanAgentCliTokenResponse
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