pub enum ContentType {
    BINARY,
    UTF_8,
    UTF_8_BOM,
    UTF_16LE,
    UTF_16BE,
    UTF_32LE,
    UTF_32BE,
}
Expand description

The type of encoding that was detected (for “text” data) or BINARY for “binary” data.

Variants§

§

BINARY

“binary” data

§

UTF_8

UTF-8 encoded “text” data

§

UTF_8_BOM

UTF-8 encoded “text” data with a byte order mark.

§

UTF_16LE

UTF-16 encoded “text” data (little endian)

§

UTF_16BE

UTF-16 encoded “text” data (big endian)

§

UTF_32LE

UTF-32 encoded “text” data (little endian)

§

UTF_32BE

UTF-32 encoded “text” data (big endian)

Implementations§

Returns true, if the ContentType is BINARY.

Returns true, if the ContentType is not BINARY.

Trait Implementations§

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
Formats the value using the given formatter. Read more
Formats the value using the given formatter. Read more
This method tests for self and other values to be equal, and is used by ==. Read more
This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason. Read more

Auto Trait Implementations§

Blanket Implementations§

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

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

The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
Uses borrowed data to replace owned data, usually by cloning. Read more
Converts the given value to a String. Read more
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.