pub enum Charset {
Show 18 variants
USA,
France,
Germany,
UK,
Denmark1,
Sweden,
Italy,
Spain1,
Japan,
Norway,
Denmark2,
Spain2,
LatinAmerica,
Korea,
SloveniaCroatia,
China,
Vietnam,
Arabia,
}
Expand description
Possible character sets
Variants§
USA
United states of america
France
France
Germany
Germany
UK
United Kingdom
Denmark1
1st possibility for Denmark
Sweden
Sweden
Italy
Italy
Spain1
1st possibility for Spain
Japan
Japan
Norway
Norway
Denmark2
2nd possibility for Denmark
Spain2
2nd possibility for Spain
LatinAmerica
Latin America
Korea
Korea
SloveniaCroatia
Slovenia or Croatia
China
China
Vietnam
Vietnam
Arabia
Arabia
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Charset
impl<'de> Deserialize<'de> for Charset
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for Charset
impl RefUnwindSafe for Charset
impl Send for Charset
impl Sync for Charset
impl Unpin for Charset
impl UnwindSafe for Charset
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more