#[repr(u32)]pub enum TidyEncodingOptions {
Show 14 variants
Raw = 0,
Ascii = 1,
Latin0 = 2,
Latin1 = 3,
Utf8 = 4,
Iso2022 = 5,
Mac = 6,
Win1252 = 7,
Ibm858 = 8,
Utf16le = 9,
Utf16be = 10,
Utf16 = 11,
Big5 = 12,
Shiftjis = 13,
}
Expand description
TidyEncodingOptions option values specify the input and/or output encoding. @remark This enum’s starting value is guaranteed to remain stable.
Variants§
Raw = 0
Ascii = 1
Latin0 = 2
Latin1 = 3
Utf8 = 4
Iso2022 = 5
Mac = 6
Win1252 = 7
Ibm858 = 8
Utf16le = 9
Utf16be = 10
Utf16 = 11
Big5 = 12
Shiftjis = 13
Trait Implementations§
Source§impl Clone for TidyEncodingOptions
impl Clone for TidyEncodingOptions
Source§fn clone(&self) -> TidyEncodingOptions
fn clone(&self) -> TidyEncodingOptions
Returns a copy 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 TidyEncodingOptions
impl Debug for TidyEncodingOptions
Source§impl Hash for TidyEncodingOptions
impl Hash for TidyEncodingOptions
Source§impl PartialEq for TidyEncodingOptions
impl PartialEq for TidyEncodingOptions
impl Copy for TidyEncodingOptions
impl Eq for TidyEncodingOptions
impl StructuralPartialEq for TidyEncodingOptions
Auto Trait Implementations§
impl Freeze for TidyEncodingOptions
impl RefUnwindSafe for TidyEncodingOptions
impl Send for TidyEncodingOptions
impl Sync for TidyEncodingOptions
impl Unpin for TidyEncodingOptions
impl UnwindSafe for TidyEncodingOptions
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