Expand description
This crate revolves around the DigitSequence struct, a sequence of 0-9 u8 digits, with:
-
conversions from/to integers, numeric sequences and strings
-
different iteration strategies
-
a custom CrateResult and a custom CrateError
-
optional serde I/O
§Features
This crate supports the following optional features:
serde
: enables JSON conversions via serde
Structs§
- Digit
Sequence - Immutable sequence of u8 digits.
Enums§
- Crate
Error - Custom error scenarios related to this crate.
Type Aliases§
- Crate
Result - Custom version of Result, based on this crate’s CrateError.
- Generic
Result - The most generic Error-based Result.