pub enum LegacyCodePage {
Iso8859_1,
Ascii,
}Expand description
Single-byte character set used for stations without native UTF-8 support. Characters outside the selected set are replaced during encoding.
Variants§
Trait Implementations§
Source§impl Clone for LegacyCodePage
impl Clone for LegacyCodePage
Source§fn clone(&self) -> LegacyCodePage
fn clone(&self) -> LegacyCodePage
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for LegacyCodePage
Source§impl Debug for LegacyCodePage
impl Debug for LegacyCodePage
Source§impl Default for LegacyCodePage
impl Default for LegacyCodePage
Source§fn default() -> LegacyCodePage
fn default() -> LegacyCodePage
Returns the “default value” for a type. Read more
impl Eq for LegacyCodePage
Source§impl PartialEq for LegacyCodePage
impl PartialEq for LegacyCodePage
impl StructuralPartialEq for LegacyCodePage
Auto Trait Implementations§
impl Freeze for LegacyCodePage
impl RefUnwindSafe for LegacyCodePage
impl Send for LegacyCodePage
impl Sync for LegacyCodePage
impl Unpin for LegacyCodePage
impl UnsafeUnpin for LegacyCodePage
impl UnwindSafe for LegacyCodePage
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