pub(crate) enum IgnorableBehavior {
Unsupported,
Ignored,
ReplacementCharacter,
}
Expand description
Treatment of the ignorable marker (0xFFFFFFFF) in data.
Variants§
Unsupported
0xFFFFFFFF in data is not supported.
Ignored
Ignorables are ignored.
ReplacementCharacter
Ignorables are treated as singleton decompositions to the REPLACEMENT CHARACTER.
Trait Implementations§
source§impl Debug for IgnorableBehavior
impl Debug for IgnorableBehavior
source§impl PartialEq for IgnorableBehavior
impl PartialEq for IgnorableBehavior
source§fn eq(&self, other: &IgnorableBehavior) -> bool
fn eq(&self, other: &IgnorableBehavior) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for IgnorableBehavior
impl StructuralPartialEq for IgnorableBehavior
Auto Trait Implementations§
impl Freeze for IgnorableBehavior
impl RefUnwindSafe for IgnorableBehavior
impl Send for IgnorableBehavior
impl Sync for IgnorableBehavior
impl Unpin for IgnorableBehavior
impl UnwindSafe for IgnorableBehavior
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