10 lines
303 B
Rust
10 lines
303 B
Rust
// SPDX-License-Identifier: CC0-1.0
|
|
|
|
//! Contains error types and other error handling tools.
|
|
|
|
#[rustfmt::skip] // Keep public re-exports separate.
|
|
#[doc(inline)]
|
|
pub use units::parse::{
|
|
ContainsPrefixError, MissingPrefixError, ParseIntError, PrefixedHexError, UnprefixedHexError,
|
|
};
|