pub struct NumberFormatBuilder { /* private fields */ }
Expand description

Build number format from specifications.

Returns the format on calling build if it was able to compile the format, otherwise, returns None.

Fields

  • digit_separator - Character to separate digits.
  • mantissa_radix - Radix for mantissa digits.
  • exponent_base - Base for the exponent.
  • exponent_radix - Radix for the exponent digits.
  • base_prefix - Optional character for the base prefix.
  • base_suffix - Optional character for the base suffix.
  • required_integer_digits - If digits are required before the decimal point.
  • required_fraction_digits - If digits are required after the decimal point.
  • required_exponent_digits - If digits are required after the exponent character.
  • required_mantissa_digits - If at least 1 significant digit is required.
  • no_positive_mantissa_sign - If positive sign before the mantissa is not allowed.
  • required_mantissa_sign - If positive sign before the mantissa is required.
  • no_exponent_notation - If exponent notation is not allowed.
  • no_positive_exponent_sign - If positive sign before the exponent is not allowed.
  • required_exponent_sign - If sign before the exponent is required.
  • no_exponent_without_fraction - If exponent without fraction is not allowed.
  • no_special - If special (non-finite) values are not allowed.
  • case_sensitive_special - If special (non-finite) values are case-sensitive.
  • no_integer_leading_zeros - If leading zeros before an integer are not allowed.
  • no_float_leading_zeros - If leading zeros before a float are not allowed.
  • required_exponent_notation - If exponent notation is required.
  • case_sensitive_exponent - If exponent characters are case-sensitive.
  • case_sensitive_base_prefix - If base prefixes are case-sensitive.
  • case_sensitive_base_suffix - If base suffixes are case-sensitive.
  • integer_internal_digit_separator - If digit separators are allowed between integer digits.
  • fraction_internal_digit_separator - If digit separators are allowed between fraction digits.
  • exponent_internal_digit_separator - If digit separators are allowed between exponent digits.
  • integer_leading_digit_separator - If a digit separator is allowed before any integer digits.
  • fraction_leading_digit_separator - If a digit separator is allowed before any fraction digits.
  • exponent_leading_digit_separator - If a digit separator is allowed before any exponent digits.
  • integer_trailing_digit_separator - If a digit separator is allowed after any integer digits.
  • fraction_trailing_digit_separator - If a digit separator is allowed after any fraction digits.
  • exponent_trailing_digit_separator - If a digit separator is allowed after any exponent digits.
  • integer_consecutive_digit_separator - If multiple consecutive integer digit separators are allowed.
  • fraction_consecutive_digit_separator - If multiple consecutive fraction digit separators are allowed.
  • special_digit_separator - If any digit separators are allowed in special (non-finite) values.

Write Integer Fields

No fields are used for writing integers.

Parse Integer Fields

These fields are used for parsing integers:

  • digit_separator
  • mantissa_radix
  • base_prefix
  • base_suffix
  • no_positive_mantissa_sign
  • required_mantissa_sign
  • no_integer_leading_zeros
  • integer_internal_digit_separator
  • integer_leading_digit_separator
  • integer_trailing_digit_separator
  • integer_consecutive_digit_separator

Write Float Fields

These fields are used for writing floats:

  • mantissa_radix
  • exponent_base
  • exponent_radix
  • no_positive_mantissa_sign
  • required_mantissa_sign
  • no_exponent_notation
  • no_positive_exponent_sign
  • required_exponent_sign
  • required_exponent_notation

Parse Float Fields

These fields are used for parsing floats:

  • digit_separator
  • mantissa_radix
  • exponent_base
  • exponent_radix
  • base_prefix
  • base_suffix
  • required_integer_digits
  • required_fraction_digits
  • required_exponent_digits
  • no_positive_mantissa_sign
  • required_mantissa_sign
  • no_exponent_notation
  • no_positive_exponent_sign
  • required_exponent_sign
  • no_exponent_without_fraction
  • no_special
  • case_sensitive_special
  • no_integer_leading_zeros
  • no_float_leading_zeros
  • required_exponent_notation
  • case_sensitive_exponent
  • case_sensitive_base_prefix
  • case_sensitive_base_suffix
  • integer_internal_digit_separator
  • fraction_internal_digit_separator
  • exponent_internal_digit_separator
  • integer_leading_digit_separator
  • fraction_leading_digit_separator
  • exponent_leading_digit_separator
  • integer_trailing_digit_separator
  • fraction_trailing_digit_separator
  • exponent_trailing_digit_separator
  • integer_consecutive_digit_separator
  • fraction_consecutive_digit_separator
  • special_digit_separator

Implementations

Create new NumberFormatBuilder with default arguments.

Create number format for standard, binary number.

Create number format for standard, octal number.

Create number format for standard, decimal number.

Create number format for standard, hexadecimal number.

Create number format from radix.

Get the digit separator for the number format.

Get the radix for mantissa digits.

Get the radix for the exponent.

Get the radix for exponent digits.

Get the optional character for the base prefix.

Get the optional character for the base suffix.

Get if digits are required before the decimal point.

Get if digits are required after the decimal point.

Get if digits are required after the exponent character.

Get if at least 1 significant digit is required.

Get if a positive sign before the mantissa is not allowed.

Get if a sign symbol before the mantissa is required.

Get if exponent notation is not allowed.

Get if a positive sign before the exponent is not allowed.

Get if a sign symbol before the exponent is required.

Get if an exponent without fraction is not allowed.

Get if special (non-finite) values are not allowed.

Get if special (non-finite) values are case-sensitive.

Get if leading zeros before an integer are not allowed.

Get if leading zeros before a float are not allowed.

Get if exponent notation is required.

Get if exponent characters are case-sensitive.

Get if base prefixes are case-sensitive.

Get if base suffixes are case-sensitive.

Get if digit separators are allowed between integer digits.

Get if digit separators are allowed between fraction digits.

Get if digit separators are allowed between exponent digits.

Get if a digit separator is allowed before any integer digits.

Get if a digit separator is allowed before any fraction digits.

Get if a digit separator is allowed before any exponent digits.

Get if a digit separator is allowed after any integer digits.

Get if a digit separator is allowed after any fraction digits.

Get if a digit separator is allowed after any exponent digits.

Get if multiple consecutive integer digit separators are allowed.

Get if multiple consecutive fraction digit separators are allowed.

Get if multiple consecutive exponent digit separators are allowed.

Get if any digit separators are allowed in special (non-finite) values.

Set the digit separator for the number format.

Alias for mantissa radix.

Set the radix for mantissa digits.

Set the radix for the exponent.

Set the radix for exponent digits.

Set the optional character for the base prefix.

Set the optional character for the base suffix.

Set if digits are required before the decimal point.

Set if digits are required after the decimal point.

Set if digits are required after the exponent character.

Set if at least 1 significant digit is required.

Set if digits are required for all float components.

Set if a positive sign before the mantissa is not allowed.

Set if a sign symbol before the mantissa is required.

Set if exponent notation is not allowed.

Set if a positive sign before the exponent is not allowed.

Set if a sign symbol before the exponent is required.

Set if an exponent without fraction is not allowed.

Set if special (non-finite) values are not allowed.

Set if special (non-finite) values are case-sensitive.

Set if leading zeros before an integer are not allowed.

Set if leading zeros before a float are not allowed.

Set if exponent notation is required.

Set if exponent characters are case-sensitive.

Set if base prefixes are case-sensitive.

Set if base suffixes are case-sensitive.

Set if digit separators are allowed between integer digits.

Set if digit separators are allowed between fraction digits.

Set if digit separators are allowed between exponent digits.

Set all internal digit separator flags.

Set if a digit separator is allowed before any integer digits.

Set if a digit separator is allowed before any fraction digits.

Set if a digit separator is allowed before any exponent digits.

Set all leading digit separator flags.

Set if a digit separator is allowed after any integer digits.

Set if a digit separator is allowed after any fraction digits.

Set if a digit separator is allowed after any exponent digits.

Set all trailing digit separator flags.

Set if multiple consecutive integer digit separators are allowed.

Set if multiple consecutive fraction digit separators are allowed.

Set if multiple consecutive exponent digit separators are allowed.

Set all consecutive digit separator flags.

Set if any digit separators are allowed in special (non-finite) values.

Set all digit separator flag masks.

Set all integer digit separator flag masks.

Set all fraction digit separator flag masks.

Set all exponent digit separator flag masks.

Create 128-bit, packed number format struct from builder options.

NOTE: This function will never fail, due to issues with panicking (and therefore unwrapping Errors/Options) in const fns. It is therefore up to you to ensure the format is valid, called via the is_valid function on NumberFormat.

Re-create builder from format.

Trait Implementations

Returns the “default value” for a type. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.