pub struct PersonName {
pub first: String,
pub von: String,
pub last: String,
pub jr: String,
}Expand description
A structured BibTeX person name.
BibTeX supports the forms First von Last, von Last, First, and
von Last, Jr, First. This type keeps those four logical parts separate
while preserving the exact token text from the source value.
Fields§
§first: StringGiven names and initials.
von: StringLowercase particles such as von, van, de, or der.
last: StringFamily name.
jr: StringJunior part such as Jr. in Last, Jr., First.
Implementations§
Source§impl PersonName
impl PersonName
Trait Implementations§
Source§impl Clone for PersonName
impl Clone for PersonName
Source§fn clone(&self) -> PersonName
fn clone(&self) -> PersonName
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 PersonName
impl Debug for PersonName
Source§impl PartialEq for PersonName
impl PartialEq for PersonName
Source§fn eq(&self, other: &PersonName) -> bool
fn eq(&self, other: &PersonName) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for PersonName
impl StructuralPartialEq for PersonName
Auto Trait Implementations§
impl Freeze for PersonName
impl RefUnwindSafe for PersonName
impl Send for PersonName
impl Sync for PersonName
impl Unpin for PersonName
impl UnsafeUnpin for PersonName
impl UnwindSafe for PersonName
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more