#[repr(C)]
pub struct charset_info_st {
Show 28 fields pub number: uint, pub primary_number: uint, pub binary_number: uint, pub state: uint, pub cs_name: LEX_CSTRING, pub coll_name: LEX_CSTRING, pub comment: *const c_char, pub tailoring: *const c_char, pub m_ctype: *const uchar, pub to_lower: *const uchar, pub to_upper: *const uchar, pub sort_order: *const uchar, pub uca: *mut MY_UCA_INFO, pub tab_to_uni: *const uint16, pub tab_from_uni: *const my_uni_idx_st, pub casefold: *const casefold_info_st, pub state_map: *const uchar, pub ident_map: *const uchar, pub strxfrm_multiply: uint, pub mbminlen: uint, pub mbmaxlen: uint, pub min_sort_char: ulong, pub max_sort_char: ulong, pub pad_char: uchar, pub escape_with_backslash_is_dangerous: my_bool, pub levels_for_order: uchar, pub cset: *const my_charset_handler_st, pub coll: *const my_collation_handler_st,
}

Fields§

§number: uint§primary_number: uint§binary_number: uint§state: uint§cs_name: LEX_CSTRING§coll_name: LEX_CSTRING§comment: *const c_char§tailoring: *const c_char§m_ctype: *const uchar§to_lower: *const uchar§to_upper: *const uchar§sort_order: *const uchar§uca: *mut MY_UCA_INFO§tab_to_uni: *const uint16§tab_from_uni: *const my_uni_idx_st§casefold: *const casefold_info_st§state_map: *const uchar§ident_map: *const uchar§strxfrm_multiply: uint§mbminlen: uint§mbmaxlen: uint§min_sort_char: ulong§max_sort_char: ulong§pad_char: uchar§escape_with_backslash_is_dangerous: my_bool§levels_for_order: uchar§cset: *const my_charset_handler_st§coll: *const my_collation_handler_st

Trait Implementations§

source§

impl Debug for charset_info_st

source§

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

Formats the value using the given formatter. Read more

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