#[non_exhaustive]pub enum CharacterSetOverride {
None,
AnyVr,
}
Expand description
Defines a special override for how text of certain value representations is decoded.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
None
The standard behavior. Use the declared character set for LO, LT, PN, SH, ST, UC, UT. Use the default character repertoire for AE, AS, CS.
AnyVr
Use the declared character set to decode text for more value representations, including CS and UR.
DA, TM, DT, IS, DS, and FD will not be affected by this change.
Trait Implementations§
Source§impl Clone for CharacterSetOverride
impl Clone for CharacterSetOverride
Source§fn clone(&self) -> CharacterSetOverride
fn clone(&self) -> CharacterSetOverride
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 CharacterSetOverride
impl Debug for CharacterSetOverride
Source§impl Default for CharacterSetOverride
impl Default for CharacterSetOverride
Source§fn default() -> CharacterSetOverride
fn default() -> CharacterSetOverride
Returns the “default value” for a type. Read more
Source§impl Hash for CharacterSetOverride
impl Hash for CharacterSetOverride
Source§impl PartialEq for CharacterSetOverride
impl PartialEq for CharacterSetOverride
impl Copy for CharacterSetOverride
impl Eq for CharacterSetOverride
impl StructuralPartialEq for CharacterSetOverride
Auto Trait Implementations§
impl Freeze for CharacterSetOverride
impl RefUnwindSafe for CharacterSetOverride
impl Send for CharacterSetOverride
impl Sync for CharacterSetOverride
impl Unpin for CharacterSetOverride
impl UnwindSafe for CharacterSetOverride
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> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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