pub enum PartialHandling {
Ignore,
Emit,
}
Expand description
Handling of suffix bytes of a partial (incomplete) character.
Variants§
Ignore
Suffix bytes for an incomplete character will be ignored.
Emit
Suffix bytes for an incomplete character will be visible as
U+FFFD REPLACEMENT CHARACTER
.
Trait Implementations§
Source§impl Clone for PartialHandling
impl Clone for PartialHandling
Source§fn clone(&self) -> PartialHandling
fn clone(&self) -> PartialHandling
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 PartialHandling
impl Debug for PartialHandling
Source§impl PartialEq for PartialHandling
impl PartialEq for PartialHandling
impl Copy for PartialHandling
impl Eq for PartialHandling
impl StructuralPartialEq for PartialHandling
Auto Trait Implementations§
impl Freeze for PartialHandling
impl RefUnwindSafe for PartialHandling
impl Send for PartialHandling
impl Sync for PartialHandling
impl Unpin for PartialHandling
impl UnwindSafe for PartialHandling
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