pub type OddUintRef = Odd<UintRef>;Expand description
Odd unsigned integer reference.
Aliased Type§
#[repr(transparent)]pub struct OddUintRef(pub(crate) UintRef);Tuple Fields§
§0: UintRefImplementations§
Source§impl OddUintRef
impl OddUintRef
Sourcepub const fn to_uint_resize<const T: usize>(&self) -> Odd<Uint<T>>
pub const fn to_uint_resize<const T: usize>(&self) -> Odd<Uint<T>>
Construct an Odd<Uint<T>> from the unsigned integer value,
truncating the upper bits if the value is too large to be
represented.