pub enum CodePageMark {
Show 25 variants
Undefined,
CP437,
CP850,
CP1252,
CP852,
CP866,
CP865,
CP861,
CP895,
CP620,
CP737,
CP857,
CP950,
CP949,
CP936,
CP932,
CP874,
CP1255,
CP1256,
CP1250,
CP1251,
CP1254,
CP1253,
Utf8,
Invalid,
}Variants§
Undefined
CP437
CP850
CP1252
CP852
CP866
CP865
CP861
CP895
CP620
CP737
CP857
CP950
CP949
CP936
CP932
CP874
CP1255
CP1256
CP1250
CP1251
CP1254
CP1253
Utf8
Invalid
Trait Implementations§
Source§impl Clone for CodePageMark
impl Clone for CodePageMark
Source§fn clone(&self) -> CodePageMark
fn clone(&self) -> CodePageMark
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 CodePageMark
impl Debug for CodePageMark
Source§impl From<CodePageMark> for u8
impl From<CodePageMark> for u8
Source§fn from(code: CodePageMark) -> Self
fn from(code: CodePageMark) -> Self
Converts to this type from the input type.
Source§impl From<u8> for CodePageMark
impl From<u8> for CodePageMark
impl Copy for CodePageMark
Auto Trait Implementations§
impl Freeze for CodePageMark
impl RefUnwindSafe for CodePageMark
impl Send for CodePageMark
impl Sync for CodePageMark
impl Unpin for CodePageMark
impl UnwindSafe for CodePageMark
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