pub struct AuthenticationInfoQueryResult {
pub items: Option<Vec<AuthenticationInfo>>,
pub start_index: Option<i32>,
pub total_record_count: Option<i32>,
}
Expand description
AuthenticationInfoQueryResult
JSON schema
{
"type": "object",
"properties": {
"Items": {
"description": "Gets or sets the items.",
"type": [
"array",
"null"
],
"items": {
"$ref": "#/components/schemas/AuthenticationInfo"
}
},
"StartIndex": {
"description": "Gets or sets the index of the first record in
Items.",
"type": "integer",
"format": "int32"
},
"TotalRecordCount": {
"description": "Gets or sets the total number of records
available.",
"type": "integer",
"format": "int32"
}
},
"additionalProperties": false
}
Fields§
§items: Option<Vec<AuthenticationInfo>>
Gets or sets the items.
start_index: Option<i32>
Gets or sets the index of the first record in Items.
total_record_count: Option<i32>
Gets or sets the total number of records available.
Implementations§
Trait Implementations§
Source§impl Clone for AuthenticationInfoQueryResult
impl Clone for AuthenticationInfoQueryResult
Source§fn clone(&self) -> AuthenticationInfoQueryResult
fn clone(&self) -> AuthenticationInfoQueryResult
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<'de> Deserialize<'de> for AuthenticationInfoQueryResult
impl<'de> Deserialize<'de> for AuthenticationInfoQueryResult
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<&AuthenticationInfoQueryResult> for AuthenticationInfoQueryResult
impl From<&AuthenticationInfoQueryResult> for AuthenticationInfoQueryResult
Source§fn from(value: &AuthenticationInfoQueryResult) -> Self
fn from(value: &AuthenticationInfoQueryResult) -> Self
Converts to this type from the input type.
Source§impl From<AuthenticationInfoQueryResult> for AuthenticationInfoQueryResult
impl From<AuthenticationInfoQueryResult> for AuthenticationInfoQueryResult
Source§fn from(value: AuthenticationInfoQueryResult) -> Self
fn from(value: AuthenticationInfoQueryResult) -> Self
Converts to this type from the input type.
Source§impl TryFrom<AuthenticationInfoQueryResult> for AuthenticationInfoQueryResult
impl TryFrom<AuthenticationInfoQueryResult> for AuthenticationInfoQueryResult
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§fn try_from(
value: AuthenticationInfoQueryResult,
) -> Result<Self, ConversionError>
fn try_from( value: AuthenticationInfoQueryResult, ) -> Result<Self, ConversionError>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for AuthenticationInfoQueryResult
impl RefUnwindSafe for AuthenticationInfoQueryResult
impl Send for AuthenticationInfoQueryResult
impl Sync for AuthenticationInfoQueryResult
impl Unpin for AuthenticationInfoQueryResult
impl UnwindSafe for AuthenticationInfoQueryResult
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