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