Struct libc::lconv[][src]

#[repr(C)]
pub struct lconv {
Show fields pub decimal_point: *mut c_char, pub thousands_sep: *mut c_char, pub grouping: *mut c_char, pub int_curr_symbol: *mut c_char, pub currency_symbol: *mut c_char, pub mon_decimal_point: *mut c_char, pub mon_thousands_sep: *mut c_char, pub mon_grouping: *mut c_char, pub positive_sign: *mut c_char, pub negative_sign: *mut c_char, pub int_frac_digits: c_char, pub frac_digits: c_char, pub p_cs_precedes: c_char, pub p_sep_by_space: c_char, pub n_cs_precedes: c_char, pub n_sep_by_space: c_char, pub p_sign_posn: c_char, pub n_sign_posn: c_char, pub int_p_cs_precedes: c_char, pub int_p_sep_by_space: c_char, pub int_n_cs_precedes: c_char, pub int_n_sep_by_space: c_char, pub int_p_sign_posn: c_char, pub int_n_sign_posn: c_char,
}

Fields

decimal_point: *mut c_charthousands_sep: *mut c_chargrouping: *mut c_charint_curr_symbol: *mut c_charcurrency_symbol: *mut c_charmon_decimal_point: *mut c_charmon_thousands_sep: *mut c_charmon_grouping: *mut c_charpositive_sign: *mut c_charnegative_sign: *mut c_charint_frac_digits: c_charfrac_digits: c_charp_cs_precedes: c_charp_sep_by_space: c_charn_cs_precedes: c_charn_sep_by_space: c_charp_sign_posn: c_charn_sign_posn: c_charint_p_cs_precedes: c_charint_p_sep_by_space: c_charint_n_cs_precedes: c_charint_n_sep_by_space: c_charint_p_sign_posn: c_charint_n_sign_posn: c_char

Trait Implementations

impl Clone for lconv[src]

fn clone(&self) -> lconv[src]

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Copy for lconv[src]

Auto Trait Implementations

impl !Send for lconv

impl !Sync for lconv

impl Unpin for lconv

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

pub fn type_id(&self) -> TypeId[src]

Gets the TypeId of self. Read more

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

pub fn borrow(&self) -> &T[src]

Immutably borrows from an owned value. Read more

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

pub fn borrow_mut(&mut self) -> &mut T[src]

Mutably borrows from an owned value. Read more

impl<T> From<T> for T[src]

pub fn from(t: T) -> T[src]

Performs the conversion.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

pub fn into(self) -> U[src]

Performs the conversion.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

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

Performs the conversion.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

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

Performs the conversion.