pub struct CredentialResponse {
pub display_order: Option<i64>,
pub field_name: Option<String>,
pub field_type: Option<String>,
pub guid: Option<String>,
pub label: Option<String>,
pub type_: Option<String>,
}Expand description
CredentialResponse
JSON schema
{
"type": "object",
"properties": {
"display_order": {
"examples": [
1
],
"type": [
"integer",
"null"
]
},
"field_name": {
"examples": [
"LOGIN"
],
"type": [
"string",
"null"
]
},
"field_type": {
"examples": [
"TEXT"
],
"type": [
"string",
"null"
]
},
"guid": {
"examples": [
"CRD-1ec152cd-e628-e81a-e852-d1e7104624da"
],
"type": [
"string",
"null"
]
},
"label": {
"examples": [
"Username"
],
"type": [
"string",
"null"
]
},
"type": {
"examples": [
"TEXT"
],
"type": [
"string",
"null"
]
}
}
}Fields§
§display_order: Option<i64>§field_name: Option<String>§field_type: Option<String>§guid: Option<String>§label: Option<String>§type_: Option<String>Trait Implementations§
Source§impl Clone for CredentialResponse
impl Clone for CredentialResponse
Source§fn clone(&self) -> CredentialResponse
fn clone(&self) -> CredentialResponse
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 CredentialResponse
impl Debug for CredentialResponse
Source§impl Default for CredentialResponse
impl Default for CredentialResponse
Source§impl<'de> Deserialize<'de> for CredentialResponse
impl<'de> Deserialize<'de> for CredentialResponse
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 From<&CredentialResponse> for CredentialResponse
impl From<&CredentialResponse> for CredentialResponse
Source§fn from(value: &CredentialResponse) -> Self
fn from(value: &CredentialResponse) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for CredentialResponse
impl RefUnwindSafe for CredentialResponse
impl Send for CredentialResponse
impl Sync for CredentialResponse
impl Unpin for CredentialResponse
impl UnwindSafe for CredentialResponse
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