pub struct MutualAuthenticationResponseData {
pub _type: Option<TypeMutualAuthentication>,
pub attributes: Option<Box<MutualAuthenticationResponseAttributes>>,
pub relationships: Option<Box<RelationshipsForMutualAuthentication>>,
pub id: Option<Box<String>>,
}
Fields§
§_type: Option<TypeMutualAuthentication>
§attributes: Option<Box<MutualAuthenticationResponseAttributes>>
§relationships: Option<Box<RelationshipsForMutualAuthentication>>
§id: Option<Box<String>>
Implementations§
Trait Implementations§
Source§impl Clone for MutualAuthenticationResponseData
impl Clone for MutualAuthenticationResponseData
Source§fn clone(&self) -> MutualAuthenticationResponseData
fn clone(&self) -> MutualAuthenticationResponseData
Returns a copy 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 Default for MutualAuthenticationResponseData
impl Default for MutualAuthenticationResponseData
Source§fn default() -> MutualAuthenticationResponseData
fn default() -> MutualAuthenticationResponseData
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for MutualAuthenticationResponseData
impl<'de> Deserialize<'de> for MutualAuthenticationResponseData
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 MutualAuthenticationResponseData
impl PartialEq for MutualAuthenticationResponseData
Source§fn eq(&self, other: &MutualAuthenticationResponseData) -> bool
fn eq(&self, other: &MutualAuthenticationResponseData) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for MutualAuthenticationResponseData
Auto Trait Implementations§
impl Freeze for MutualAuthenticationResponseData
impl RefUnwindSafe for MutualAuthenticationResponseData
impl Send for MutualAuthenticationResponseData
impl Sync for MutualAuthenticationResponseData
impl Unpin for MutualAuthenticationResponseData
impl UnwindSafe for MutualAuthenticationResponseData
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