[−][src]Enum dicom_encoding::text::SpecificCharacterSet
An enum type for all currently supported character sets.
Variants (Non-exhaustive)
ISO-IR 6: the default character set.
ISO-IR 100 (ISO-8859-1): Right-hand part of the Latin alphabet no. 1, the Western Europe character set.
ISO-IR 101 (ISO-8859-2): Right-hand part of the Latin alphabet no. 2, the Central/Eastern Europe character set.
ISO-IR 109 (ISO-8859-3): Right-hand part of the Latin alphabet no. 3, the South Europe character set.
ISO-IR 110 (ISO-8859-4): Right-hand part of the Latin alphabet no. 4, the North Europe character set.
ISO-IR 144 (ISO-8859-5): The Latin/Cyrillic character set.
ISO-IR 192: The Unicode character set based on the UTF-8 encoding.
GB18030: The Simplified Chinese character set.
Implementations
impl SpecificCharacterSet
[src]
pub fn from_code(uid: &str) -> Option<Self>
[src]
Obtain the specific character set identified by the given code string.
- Supported code strings include the possible values
- in the respective DICOM element (0008, 0005).
Example
-
- let character_set = SpecificCharacterSet::from_code("ISO_IR 100");
- assert_eq!(character_set, Some(SpecificCharacterSet::IsoIr100));
-
pub fn codec(self) -> Option<DynamicTextCodec>
[src]
Retrieve the respective text codec.
Trait Implementations
impl Clone for SpecificCharacterSet
[src]
fn clone(&self) -> SpecificCharacterSet
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Copy for SpecificCharacterSet
[src]
impl Debug for SpecificCharacterSet
[src]
impl Default for SpecificCharacterSet
[src]
impl Eq for SpecificCharacterSet
[src]
impl Ord for SpecificCharacterSet
[src]
fn cmp(&self, other: &SpecificCharacterSet) -> Ordering
[src]
#[must_use]fn max(self, other: Self) -> Self
1.21.0[src]
#[must_use]fn min(self, other: Self) -> Self
1.21.0[src]
#[must_use]fn clamp(self, min: Self, max: Self) -> Self
[src]
impl PartialEq<SpecificCharacterSet> for SpecificCharacterSet
[src]
fn eq(&self, other: &SpecificCharacterSet) -> bool
[src]
#[must_use]fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
impl PartialOrd<SpecificCharacterSet> for SpecificCharacterSet
[src]
fn partial_cmp(&self, other: &SpecificCharacterSet) -> Option<Ordering>
[src]
#[must_use]fn lt(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]fn le(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]fn gt(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]fn ge(&self, other: &Rhs) -> bool
1.0.0[src]
impl StructuralEq for SpecificCharacterSet
[src]
impl StructuralPartialEq for SpecificCharacterSet
[src]
Auto Trait Implementations
impl RefUnwindSafe for SpecificCharacterSet
impl Send for SpecificCharacterSet
impl Sync for SpecificCharacterSet
impl Unpin for SpecificCharacterSet
impl UnwindSafe for SpecificCharacterSet
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T
[src]
fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,