#[repr(C)]pub struct lconv {Show 24 fields
pub decimal_point: *mut i8,
pub thousands_sep: *mut i8,
pub grouping: *mut i8,
pub int_curr_symbol: *mut i8,
pub currency_symbol: *mut i8,
pub mon_decimal_point: *mut i8,
pub mon_thousands_sep: *mut i8,
pub mon_grouping: *mut i8,
pub positive_sign: *mut i8,
pub negative_sign: *mut i8,
pub int_frac_digits: i8,
pub frac_digits: i8,
pub p_cs_precedes: i8,
pub p_sep_by_space: i8,
pub n_cs_precedes: i8,
pub n_sep_by_space: i8,
pub p_sign_posn: i8,
pub n_sign_posn: i8,
pub int_p_cs_precedes: i8,
pub int_p_sep_by_space: i8,
pub int_n_cs_precedes: i8,
pub int_n_sep_by_space: i8,
pub int_p_sign_posn: i8,
pub int_n_sign_posn: i8,
}
Fields§
§decimal_point: *mut i8
§thousands_sep: *mut i8
§grouping: *mut i8
§int_curr_symbol: *mut i8
§currency_symbol: *mut i8
§mon_decimal_point: *mut i8
§mon_thousands_sep: *mut i8
§mon_grouping: *mut i8
§positive_sign: *mut i8
§negative_sign: *mut i8
§int_frac_digits: i8
§frac_digits: i8
§p_cs_precedes: i8
§p_sep_by_space: i8
§n_cs_precedes: i8
§n_sep_by_space: i8
§p_sign_posn: i8
§n_sign_posn: i8
§int_p_cs_precedes: i8
§int_p_sep_by_space: i8
§int_n_cs_precedes: i8
§int_n_sep_by_space: i8
§int_p_sign_posn: i8
§int_n_sign_posn: i8
Trait Implementations§
impl Copy for lconv
impl Eq for lconv
impl StructuralPartialEq for lconv
Auto Trait Implementations§
impl Freeze for lconv
impl RefUnwindSafe for lconv
impl !Send for lconv
impl !Sync for lconv
impl Unpin for lconv
impl UnwindSafe for lconv
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
Source§fn in_current_span(self) -> Instrumented<Self> ⓘ
fn in_current_span(self) -> Instrumented<Self> ⓘ
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more