Module rocket::mtls::bigint

source ·
Available on crate feature mtls only.
Expand description

Signed and unsigned big integer types re-exported from num_bigint.

Structs§

  • A big signed integer type.
  • A big unsigned integer type.
  • The error type returned when a checked conversion regarding big integer fails.
  • An iterator of u32 digits representation of a BigUint or BigInt, ordered least significant digit first.
  • An iterator of u64 digits representation of a BigUint or BigInt, ordered least significant digit first.

Enums§

Traits§

  • A generic trait for converting a value to a BigInt. This may return None when converting from f32 or f64, and will always succeed when converting from any integer or unsigned primitive, or BigUint.
  • A generic trait for converting a value to a BigUint.