pub struct PostScimV2UsersBodyName {
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 PostScimV2UsersBodyName
impl Clone for PostScimV2UsersBodyName
Source§fn clone(&self) -> PostScimV2UsersBodyName
fn clone(&self) -> PostScimV2UsersBodyName
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 PostScimV2UsersBodyName
impl Debug for PostScimV2UsersBodyName
Source§impl<'de> Deserialize<'de> for PostScimV2UsersBodyName
impl<'de> Deserialize<'de> for PostScimV2UsersBodyName
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 PostScimV2UsersBodyName
impl PartialEq for PostScimV2UsersBodyName
Source§impl Serialize for PostScimV2UsersBodyName
impl Serialize for PostScimV2UsersBodyName
impl StructuralPartialEq for PostScimV2UsersBodyName
Auto Trait Implementations§
impl Freeze for PostScimV2UsersBodyName
impl RefUnwindSafe for PostScimV2UsersBodyName
impl Send for PostScimV2UsersBodyName
impl Sync for PostScimV2UsersBodyName
impl Unpin for PostScimV2UsersBodyName
impl UnwindSafe for PostScimV2UsersBodyName
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