pub struct PostScimV2GroupsResponseName {
pub family_name: Option<String>,
pub given_name: Option<String>,
}
Fields§
§family_name: Option<String>
The user’s last name.
given_name: Option<String>
The user’s first name.
Trait Implementations§
Source§impl Clone for PostScimV2GroupsResponseName
impl Clone for PostScimV2GroupsResponseName
Source§fn clone(&self) -> PostScimV2GroupsResponseName
fn clone(&self) -> PostScimV2GroupsResponseName
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 PostScimV2GroupsResponseName
impl Debug for PostScimV2GroupsResponseName
Source§impl<'de> Deserialize<'de> for PostScimV2GroupsResponseName
impl<'de> Deserialize<'de> for PostScimV2GroupsResponseName
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 PostScimV2GroupsResponseName
impl PartialEq for PostScimV2GroupsResponseName
Source§fn eq(&self, other: &PostScimV2GroupsResponseName) -> bool
fn eq(&self, other: &PostScimV2GroupsResponseName) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for PostScimV2GroupsResponseName
Auto Trait Implementations§
impl Freeze for PostScimV2GroupsResponseName
impl RefUnwindSafe for PostScimV2GroupsResponseName
impl Send for PostScimV2GroupsResponseName
impl Sync for PostScimV2GroupsResponseName
impl Unpin for PostScimV2GroupsResponseName
impl UnwindSafe for PostScimV2GroupsResponseName
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