#[non_exhaustive]pub struct AuthNMappingsResponse {
pub data: Option<Vec<AuthNMapping>>,
pub included: Option<Vec<AuthNMappingIncluded>>,
pub meta: Option<ResponseMetaAttributes>,
pub additional_properties: BTreeMap<String, Value>,
/* private fields */
}
Expand description
Array of AuthN Mappings response.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.data: Option<Vec<AuthNMapping>>
Array of returned AuthN Mappings.
included: Option<Vec<AuthNMappingIncluded>>
Included data in the AuthN Mapping response.
meta: Option<ResponseMetaAttributes>
Object describing meta attributes of response.
additional_properties: BTreeMap<String, Value>
Implementations§
Source§impl AuthNMappingsResponse
impl AuthNMappingsResponse
pub fn new() -> AuthNMappingsResponse
pub fn data(self, value: Vec<AuthNMapping>) -> Self
pub fn included(self, value: Vec<AuthNMappingIncluded>) -> Self
pub fn meta(self, value: ResponseMetaAttributes) -> Self
pub fn additional_properties(self, value: BTreeMap<String, Value>) -> Self
Trait Implementations§
Source§impl Clone for AuthNMappingsResponse
impl Clone for AuthNMappingsResponse
Source§fn clone(&self) -> AuthNMappingsResponse
fn clone(&self) -> AuthNMappingsResponse
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 AuthNMappingsResponse
impl Debug for AuthNMappingsResponse
Source§impl Default for AuthNMappingsResponse
impl Default for AuthNMappingsResponse
Source§impl<'de> Deserialize<'de> for AuthNMappingsResponse
impl<'de> Deserialize<'de> for AuthNMappingsResponse
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 AuthNMappingsResponse
impl PartialEq for AuthNMappingsResponse
Source§impl Serialize for AuthNMappingsResponse
impl Serialize for AuthNMappingsResponse
impl StructuralPartialEq for AuthNMappingsResponse
Auto Trait Implementations§
impl Freeze for AuthNMappingsResponse
impl RefUnwindSafe for AuthNMappingsResponse
impl Send for AuthNMappingsResponse
impl Sync for AuthNMappingsResponse
impl Unpin for AuthNMappingsResponse
impl UnwindSafe for AuthNMappingsResponse
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