Struct dicom_core::value::person_name::PersonName

source ·
pub struct PersonName<'a> { /* private fields */ }
Expand description

A DICOM Person Name (PN value representation).

Values of this type keep family name, given name, middle name, prefix and suffix as borrowed values. All name components are optional.

§Example

A value of type PersonName can be obtained either by parsing a DICOM formatted string via from_text or by using the builder API.

let dr_seuss: PersonName = PersonName::from_text("Geisel^Theodor^Seuss^Dr.");
assert_eq!(&dr_seuss.to_string(), "Dr. Theodor Seuss Geisel");
assert_eq!(dr_seuss.prefix(), Some("Dr."));
assert_eq!(dr_seuss.given(), Some("Theodor"));

Implementations§

source§

impl<'a> PersonName<'a>

source

pub fn prefix(&self) -> Option<&str>

Retrieve PersonName prefix

source

pub fn suffix(&self) -> Option<&str>

Retrieve PersonName suffix

source

pub fn family(&self) -> Option<&str>

Retrieve family name from PersonName

source

pub fn given(&self) -> Option<&str>

Retrieve given name from PersonName

source

pub fn middle(&self) -> Option<&str>

Retrieve middle name from PersonName

source

pub fn to_dicom_string(&self) -> String

Convert the person name into a DICOM formatted string.

Name components are interspersed with a '^' separator. Leading null components produce a separator, while trailing components do not.

source

pub fn from_text(slice: &'a str) -> PersonName<'a>

Obtains a person name by interpreting slice as a DICOM formatted string.

The DICOM string representation is split by the '^' separator into its respective components. When passing a text value to this function, ensure that it contains a single DICOM formatted name.

source

pub fn builder() -> PersonNameBuilder<'a>

Retrieve a builder for a person name.

See PersonNameBuilder for more information.

Trait Implementations§

source§

impl<'a> Clone for PersonName<'a>

source§

fn clone(&self) -> PersonName<'a>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<'a> Debug for PersonName<'a>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for PersonName<'_>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<'a> From<&mut PersonNameBuilder<'a>> for PersonName<'a>

source§

fn from(builder: &mut PersonNameBuilder<'a>) -> Self

Converts to this type from the input type.
source§

impl<'a> From<PersonName<'a>> for PrimitiveValue

source§

fn from(p: PersonName<'_>) -> Self

Converts to this type from the input type.
source§

impl<'a> From<PersonNameBuilder<'a>> for PersonName<'a>

source§

fn from(builder: PersonNameBuilder<'a>) -> Self

Converts to this type from the input type.
source§

impl<'a> Hash for PersonName<'a>

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl<'a> PartialEq for PersonName<'a>

source§

fn eq(&self, other: &PersonName<'a>) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<'a> Copy for PersonName<'a>

source§

impl<'a> Eq for PersonName<'a>

source§

impl<'a> StructuralPartialEq for PersonName<'a>

Auto Trait Implementations§

§

impl<'a> Freeze for PersonName<'a>

§

impl<'a> RefUnwindSafe for PersonName<'a>

§

impl<'a> Send for PersonName<'a>

§

impl<'a> Sync for PersonName<'a>

§

impl<'a> Unpin for PersonName<'a>

§

impl<'a> UnwindSafe for PersonName<'a>

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> IntoEither for T

source§

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 more
source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

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
source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T> ToString for T
where T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.