[][src]Enum rust_icu_sys::UNumberFormatAttribute

#[repr(u32)]pub enum UNumberFormatAttribute {
    UNUM_PARSE_INT_ONLY,
    UNUM_GROUPING_USED,
    UNUM_DECIMAL_ALWAYS_SHOWN,
    UNUM_MAX_INTEGER_DIGITS,
    UNUM_MIN_INTEGER_DIGITS,
    UNUM_INTEGER_DIGITS,
    UNUM_MAX_FRACTION_DIGITS,
    UNUM_MIN_FRACTION_DIGITS,
    UNUM_FRACTION_DIGITS,
    UNUM_MULTIPLIER,
    UNUM_GROUPING_SIZE,
    UNUM_ROUNDING_MODE,
    UNUM_ROUNDING_INCREMENT,
    UNUM_FORMAT_WIDTH,
    UNUM_PADDING_POSITION,
    UNUM_SECONDARY_GROUPING_SIZE,
    UNUM_SIGNIFICANT_DIGITS_USED,
    UNUM_MIN_SIGNIFICANT_DIGITS,
    UNUM_MAX_SIGNIFICANT_DIGITS,
    UNUM_LENIENT_PARSE,
    UNUM_PARSE_ALL_INPUT,
    UNUM_SCALE,
    UNUM_MINIMUM_GROUPING_DIGITS,
    UNUM_CURRENCY_USAGE,
    UNUM_MAX_NONBOOLEAN_ATTRIBUTE,
    UNUM_FORMAT_FAIL_IF_MORE_THAN_MAX_DIGITS,
    UNUM_PARSE_NO_EXPONENT,
    UNUM_PARSE_DECIMAL_MARK_REQUIRED,
    UNUM_PARSE_CASE_SENSITIVE,
    UNUM_SIGN_ALWAYS_SHOWN,
    UNUM_LIMIT_BOOLEAN_ATTRIBUTE,
}

Variants

UNUM_PARSE_INT_ONLY
UNUM_GROUPING_USED
UNUM_DECIMAL_ALWAYS_SHOWN
UNUM_MAX_INTEGER_DIGITS
UNUM_MIN_INTEGER_DIGITS
UNUM_INTEGER_DIGITS
UNUM_MAX_FRACTION_DIGITS
UNUM_MIN_FRACTION_DIGITS
UNUM_FRACTION_DIGITS
UNUM_MULTIPLIER
UNUM_GROUPING_SIZE
UNUM_ROUNDING_MODE
UNUM_ROUNDING_INCREMENT
UNUM_FORMAT_WIDTH
UNUM_PADDING_POSITION
UNUM_SECONDARY_GROUPING_SIZE
UNUM_SIGNIFICANT_DIGITS_USED
UNUM_MIN_SIGNIFICANT_DIGITS
UNUM_MAX_SIGNIFICANT_DIGITS
UNUM_LENIENT_PARSE
UNUM_PARSE_ALL_INPUT
UNUM_SCALE
UNUM_MINIMUM_GROUPING_DIGITS
UNUM_CURRENCY_USAGE
UNUM_MAX_NONBOOLEAN_ATTRIBUTE
UNUM_FORMAT_FAIL_IF_MORE_THAN_MAX_DIGITS
UNUM_PARSE_NO_EXPONENT
UNUM_PARSE_DECIMAL_MARK_REQUIRED
UNUM_PARSE_CASE_SENSITIVE
UNUM_SIGN_ALWAYS_SHOWN
UNUM_LIMIT_BOOLEAN_ATTRIBUTE

Trait Implementations

impl Clone for UNumberFormatAttribute[src]

impl Copy for UNumberFormatAttribute[src]

impl Debug for UNumberFormatAttribute[src]

impl Eq for UNumberFormatAttribute[src]

impl Hash for UNumberFormatAttribute[src]

impl PartialEq<UNumberFormatAttribute> for UNumberFormatAttribute[src]

impl PartialOrd<UNumberFormatAttribute> for UNumberFormatAttribute[src]

impl StructuralEq for UNumberFormatAttribute[src]

impl StructuralPartialEq for UNumberFormatAttribute[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.

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.