pub struct Name {
pub prefix: Option<String>,
pub given_name: Option<String>,
pub surname: Option<String>,
pub middle_name: Option<String>,
pub suffix: Option<String>,
pub full_name: Option<String>,
}
Fields
prefix: Option<String>
The prefix, or title, to the party’s name.
given_name: Option<String>
When the party is a person, the party’s given, or first, name.
surname: Option<String>
When the party is a person, the party’s surname or family name. Also known as the last name. Required when the party is a person. Use also to store multiple surnames including the matronymic, or mother’s, surname.
middle_name: Option<String>
When the party is a person, the party’s middle name. Use also to store multiple middle names including the patronymic, or father’s, middle name.
suffix: Option<String>
The suffix for the party’s name.
full_name: Option<String>
When the party is a person, the party’s full name.
Trait Implementations
sourceimpl<'de> Deserialize<'de> for Name
impl<'de> Deserialize<'de> for Name
sourcefn 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
Auto Trait Implementations
impl RefUnwindSafe for Name
impl Send for Name
impl Sync for Name
impl Unpin for Name
impl UnwindSafe for Name
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more