pub struct Uint<const N: usize>(pub usize);
Expand description
When parsed, this type returns a nonnegative integer with the provided upper bound.
This type is used to implement the following parsing logic in TeX:
- TeX.2021.433 (scan_eight_bit_int) where N=256.
- TeX.2021.434 (scan_char_num) where N=256.
- TeX.2021.435 (scan_four_bit_int) where N=16.
- TeX.2021.436 (scan_fifteen_bit_int) where N=2^15.
- TeX.2021.437 (scan_twenty_seven_bit_int) where N=2^27.
Tuple Fields§
§0: usize
Implementations§
Trait Implementations§
source§impl<const N: usize> Parsable for Uint<N>
impl<const N: usize> Parsable for Uint<N>
source§fn parse_impl<S: TexlangState>(input: &mut ExpandedStream<S>) -> Result<Self>
fn parse_impl<S: TexlangState>(input: &mut ExpandedStream<S>) -> Result<Self>
Parses a value from the vm::ExpandedStream.
source§fn parse<S: TexlangState, I>(input: &mut I) -> Result<Self>where
I: AsMut<ExpandedStream<S>>,
fn parse<S: TexlangState, I>(input: &mut I) -> Result<Self>where
I: AsMut<ExpandedStream<S>>,
Parses a value from an input stream. Read more
impl<const N: usize> Eq for Uint<N>
impl<const N: usize> StructuralPartialEq for Uint<N>
Auto Trait Implementations§
impl<const N: usize> Freeze for Uint<N>
impl<const N: usize> RefUnwindSafe for Uint<N>
impl<const N: usize> Send for Uint<N>
impl<const N: usize> Sync for Uint<N>
impl<const N: usize> Unpin for Uint<N>
impl<const N: usize> UnwindSafe for Uint<N>
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more