| Crates.io | nonmax |
| lib.rs | nonmax |
| version | 0.5.5 |
| created_at | 2020-09-28 01:01:12.73232+00 |
| updated_at | 2023-11-19 20:12:17.12191+00 |
| description | Numeric types that cannot hold maximum values |
| homepage | https://github.com/LPGhatguy/nonmax |
| repository | https://github.com/LPGhatguy/nonmax |
| max_upload_size | |
| id | 293547 |
| size | 39,139 |
nonmax provides types similar to the std NonZero* types, but instead requires
that their values are not the maximum for their type. This ensures that
Option<NonMax*> is no larger than NonMax*.
nonmax supports every type that has a corresponding non-zero variant in the standard library:
NonMaxI8NonMaxI16NonMaxI32NonMaxI64NonMaxI128NonMaxIsizeNonMaxU8NonMaxU16NonMaxU32NonMaxU64NonMaxU128NonMaxUsizeuse nonmax::{NonMaxI16, NonMaxU8};
let value = NonMaxU8::new(16).expect("16 should definitely fit in a u8");
assert_eq!(value.get(), 16);
assert_eq!(std::mem::size_of_val(&value), 1);
let signed = NonMaxI16::new(i16::min_value()).expect("minimum values are fine");
assert_eq!(signed.get(), i16::min_value());
assert_eq!(std::mem::size_of_val(&signed), 2);
let oops = NonMaxU8::new(255);
assert_eq!(oops, None);
std (default): implements [std::error::Error] for [ParseIntError] and
[TryFromIntError]. Disable this feature for
#![no_std] support.
serde: implements the Serialize and Deserialize traits from serde.
nonmax supports Rust 1.47.0 and newer. Until this library reaches 1.0, changes to the MSRV will require major version bumps. After 1.0, MSRV changes will only require minor version bumps, but will need significant justification.
Licensed under either of
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.