pub struct BackendAuthResponse {
pub app_id: Option<String>,
pub client_id: Option<String>,
pub name: Option<String>,
}Expand description
BackendAuthResponse
JSON schema
{
"type": "object",
"properties": {
"app_id": {
"description": "Application UUID",
"examples": [
"123e4567-e89b-12d3-a456-426614174000"
],
"type": [
"string",
"null"
]
},
"client_id": {
"description": "Application client identifier",
"examples": [
"monaco-frontend"
],
"type": [
"string",
"null"
]
},
"name": {
"description": "Application display name",
"examples": [
"Monaco Trading Frontend"
],
"type": [
"string",
"null"
]
}
}
}Fields§
§app_id: Option<String>Application UUID
client_id: Option<String>Application client identifier
name: Option<String>Application display name
Trait Implementations§
Source§impl Clone for BackendAuthResponse
impl Clone for BackendAuthResponse
Source§fn clone(&self) -> BackendAuthResponse
fn clone(&self) -> BackendAuthResponse
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 BackendAuthResponse
impl Debug for BackendAuthResponse
Source§impl Default for BackendAuthResponse
impl Default for BackendAuthResponse
Source§impl<'de> Deserialize<'de> for BackendAuthResponse
impl<'de> Deserialize<'de> for BackendAuthResponse
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 BackendAuthResponse
impl RefUnwindSafe for BackendAuthResponse
impl Send for BackendAuthResponse
impl Sync for BackendAuthResponse
impl Unpin for BackendAuthResponse
impl UnsafeUnpin for BackendAuthResponse
impl UnwindSafe for BackendAuthResponse
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