pub enum Charset {
Show 25 variants Us_Ascii, Iso_8859_1, Iso_8859_2, Iso_8859_3, Iso_8859_4, Iso_8859_5, Iso_8859_6, Iso_8859_7, Iso_8859_8, Iso_8859_9, Iso_8859_10, Shift_Jis, Euc_Jp, Iso_2022_Kr, Euc_Kr, Iso_2022_Jp, Iso_2022_Jp_2, Iso_8859_6_E, Iso_8859_6_I, Iso_8859_8_E, Iso_8859_8_I, Gb2312, Big5, Koi8_R, Ext(String),
}
Expand description

A MIME character set.

The string representation is normalized to upper case.

See http://www.iana.org/assignments/character-sets/character-sets.xhtml.

Variants§

§

Us_Ascii

US ASCII

§

Iso_8859_1

ISO-8859-1

§

Iso_8859_2

ISO-8859-2

§

Iso_8859_3

ISO-8859-3

§

Iso_8859_4

ISO-8859-4

§

Iso_8859_5

ISO-8859-5

§

Iso_8859_6

ISO-8859-6

§

Iso_8859_7

ISO-8859-7

§

Iso_8859_8

ISO-8859-8

§

Iso_8859_9

ISO-8859-9

§

Iso_8859_10

ISO-8859-10

§

Shift_Jis

Shift_JIS

§

Euc_Jp

EUC-JP

§

Iso_2022_Kr

ISO-2022-KR

§

Euc_Kr

EUC-KR

§

Iso_2022_Jp

ISO-2022-JP

§

Iso_2022_Jp_2

ISO-2022-JP-2

§

Iso_8859_6_E

ISO-8859-6-E

§

Iso_8859_6_I

ISO-8859-6-I

§

Iso_8859_8_E

ISO-8859-8-E

§

Iso_8859_8_I

ISO-8859-8-I

§

Gb2312

GB2312

§

Big5

Big5

§

Koi8_R

KOI8-R

§

Ext(String)

An arbitrary charset specified as a string

Trait Implementations§

source§

impl Clone for Charset

source§

fn clone(&self) -> Charset

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for Charset

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl Display for Charset

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl FromStr for Charset

§

type Err = Error

The associated error which can be returned from parsing.
source§

fn from_str(s: &str) -> Result<Charset, Error>

Parses a string s to return a value of this type. Read more
source§

impl PartialEq for Charset

source§

fn eq(&self, other: &Charset) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Eq for Charset

source§

impl StructuralPartialEq for Charset

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T> ToString for T
where T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

§

fn vzip(self) -> V

§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more