#[repr(align(64))]
pub struct SingleByteData {
Show 27 fields pub ibm866: [u16; 128], pub iso_8859_2: [u16; 128], pub iso_8859_3: [u16; 128], pub iso_8859_4: [u16; 128], pub iso_8859_5: [u16; 128], pub iso_8859_6: [u16; 128], pub iso_8859_7: [u16; 128], pub iso_8859_8: [u16; 128], pub iso_8859_10: [u16; 128], pub iso_8859_13: [u16; 128], pub iso_8859_14: [u16; 128], pub iso_8859_15: [u16; 128], pub iso_8859_16: [u16; 128], pub koi8_r: [u16; 128], pub koi8_u: [u16; 128], pub macintosh: [u16; 128], pub windows_874: [u16; 128], pub windows_1250: [u16; 128], pub windows_1251: [u16; 128], pub windows_1252: [u16; 128], pub windows_1253: [u16; 128], pub windows_1254: [u16; 128], pub windows_1255: [u16; 128], pub windows_1256: [u16; 128], pub windows_1257: [u16; 128], pub windows_1258: [u16; 128], pub x_mac_cyrillic: [u16; 128],
}

Fields§

§ibm866: [u16; 128]§iso_8859_2: [u16; 128]§iso_8859_3: [u16; 128]§iso_8859_4: [u16; 128]§iso_8859_5: [u16; 128]§iso_8859_6: [u16; 128]§iso_8859_7: [u16; 128]§iso_8859_8: [u16; 128]§iso_8859_10: [u16; 128]§iso_8859_13: [u16; 128]§iso_8859_14: [u16; 128]§iso_8859_15: [u16; 128]§iso_8859_16: [u16; 128]§koi8_r: [u16; 128]§koi8_u: [u16; 128]§macintosh: [u16; 128]§windows_874: [u16; 128]§windows_1250: [u16; 128]§windows_1251: [u16; 128]§windows_1252: [u16; 128]§windows_1253: [u16; 128]§windows_1254: [u16; 128]§windows_1255: [u16; 128]§windows_1256: [u16; 128]§windows_1257: [u16; 128]§windows_1258: [u16; 128]§x_mac_cyrillic: [u16; 128]

Auto Trait Implementations§

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere 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 Twhere 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, U> TryFrom<U> for Twhere 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 Twhere 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.