intx 0.1.0

Defines new integer types with non-standard but fixed sizes.
Documentation
1
2
3
4
5
6
7
8
9
10
/// Error that may occur for fallible conversions between integers.
#[derive(Debug, Copy, Clone, PartialEq, Eq)]
pub struct TryFromIntError(pub(crate) ());

impl From<core::num::TryFromIntError> for TryFromIntError {
    #[inline]
    fn from(_: core::num::TryFromIntError) -> Self {
        Self(())
    }
}