pub struct PersonName {
pub alphabetic: String,
pub ideographic: String,
pub phonetic: String,
}Expand description
A DICOM PN (Person Name) value.
Each name consists of up to three component groups (alphabetic, ideographic,
phonetic) separated by =. Within each group, the five name components
(family, given, middle, prefix, suffix) are separated by ^.
Fields§
§alphabetic: String§ideographic: String§phonetic: StringImplementations§
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 · 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 Display for PersonName
impl Display for PersonName
Source§impl PartialEq for PersonName
impl PartialEq for PersonName
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<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.