pub enum Utf8Support {
Unknown,
ASCII,
Latin1,
UTF8,
Other,
}Variants§
Unknown
The locale is unset, or at least as far as we can tell.
ASCII
The locale is ASCII.
Latin1
The locale is Latin-1 (Windows only).
UTF8
The locale is UTF-8.
Other
The locale is set, and not ASCII or UTF-8.
Trait Implementations§
Source§impl Clone for Utf8Support
impl Clone for Utf8Support
Source§fn clone(&self) -> Utf8Support
fn clone(&self) -> Utf8Support
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 Utf8Support
impl Debug for Utf8Support
Source§impl Default for Utf8Support
impl Default for Utf8Support
Source§fn default() -> Utf8Support
fn default() -> Utf8Support
Returns the “default value” for a type. Read more
Source§impl Hash for Utf8Support
impl Hash for Utf8Support
Source§impl PartialEq for Utf8Support
impl PartialEq for Utf8Support
impl Copy for Utf8Support
impl Eq for Utf8Support
impl StructuralPartialEq for Utf8Support
Auto Trait Implementations§
impl Freeze for Utf8Support
impl RefUnwindSafe for Utf8Support
impl Send for Utf8Support
impl Sync for Utf8Support
impl Unpin for Utf8Support
impl UnwindSafe for Utf8Support
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