#[repr(i32)]
pub enum UConverterType {
Show 36 variants UCNV_UNSUPPORTED_CONVERTER = -1, UCNV_SBCS = 0, UCNV_DBCS = 1, UCNV_MBCS = 2, UCNV_LATIN_1 = 3, UCNV_UTF8 = 4, UCNV_UTF16_BigEndian = 5, UCNV_UTF16_LittleEndian = 6, UCNV_UTF32_BigEndian = 7, UCNV_UTF32_LittleEndian = 8, UCNV_EBCDIC_STATEFUL = 9, UCNV_ISO_2022 = 10, UCNV_LMBCS_1 = 11, UCNV_LMBCS_2 = 12, UCNV_LMBCS_3 = 13, UCNV_LMBCS_4 = 14, UCNV_LMBCS_5 = 15, UCNV_LMBCS_6 = 16, UCNV_LMBCS_8 = 17, UCNV_LMBCS_11 = 18, UCNV_LMBCS_16 = 19, UCNV_LMBCS_17 = 20, UCNV_LMBCS_18 = 21, UCNV_LMBCS_19 = 22, UCNV_HZ = 23, UCNV_SCSU = 24, UCNV_ISCII = 25, UCNV_US_ASCII = 26, UCNV_UTF7 = 27, UCNV_BOCU1 = 28, UCNV_UTF16 = 29, UCNV_UTF32 = 30, UCNV_CESU8 = 31, UCNV_IMAP_MAILBOX = 32, UCNV_COMPOUND_TEXT = 33, UCNV_NUMBER_OF_SUPPORTED_CONVERTER_TYPES = 34,
}

Variants§

§

UCNV_UNSUPPORTED_CONVERTER = -1

§

UCNV_SBCS = 0

§

UCNV_DBCS = 1

§

UCNV_MBCS = 2

§

UCNV_LATIN_1 = 3

§

UCNV_UTF8 = 4

§

UCNV_UTF16_BigEndian = 5

§

UCNV_UTF16_LittleEndian = 6

§

UCNV_UTF32_BigEndian = 7

§

UCNV_UTF32_LittleEndian = 8

§

UCNV_EBCDIC_STATEFUL = 9

§

UCNV_ISO_2022 = 10

§

UCNV_LMBCS_1 = 11

§

UCNV_LMBCS_2 = 12

§

UCNV_LMBCS_3 = 13

§

UCNV_LMBCS_4 = 14

§

UCNV_LMBCS_5 = 15

§

UCNV_LMBCS_6 = 16

§

UCNV_LMBCS_8 = 17

§

UCNV_LMBCS_11 = 18

§

UCNV_LMBCS_16 = 19

§

UCNV_LMBCS_17 = 20

§

UCNV_LMBCS_18 = 21

§

UCNV_LMBCS_19 = 22

§

UCNV_HZ = 23

§

UCNV_SCSU = 24

§

UCNV_ISCII = 25

§

UCNV_US_ASCII = 26

§

UCNV_UTF7 = 27

§

UCNV_BOCU1 = 28

§

UCNV_UTF16 = 29

§

UCNV_UTF32 = 30

§

UCNV_CESU8 = 31

§

UCNV_IMAP_MAILBOX = 32

§

UCNV_COMPOUND_TEXT = 33

§

UCNV_NUMBER_OF_SUPPORTED_CONVERTER_TYPES = 34

Implementations§

source§

impl UConverterType

source

pub const UCNV_LMBCS_LAST: UConverterType = UConverterType::UCNV_LMBCS_19

Trait Implementations§

source§

impl Clone for UConverterType

source§

fn clone(&self) -> UConverterType

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 UConverterType

source§

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

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

impl Hash for UConverterType

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl PartialEq for UConverterType

source§

fn eq(&self, other: &UConverterType) -> 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 PartialOrd for UConverterType

source§

fn partial_cmp(&self, other: &UConverterType) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · source§

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

This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · source§

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

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · source§

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

This method tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · source§

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

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
source§

impl Copy for UConverterType

source§

impl Eq for UConverterType

source§

impl StructuralPartialEq for UConverterType

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
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

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> 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, 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.