pub struct Spaces;
Expand description
When parsed, this type consumes an arbitrary number of spaces from the input stream
TODO: we should audit all places Knuth uses this, and ensure we’re using it too.
TeX.2021.406
Trait Implementations§
source§impl Parsable for Spaces
impl Parsable for Spaces
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
Auto Trait Implementations§
impl Freeze for Spaces
impl RefUnwindSafe for Spaces
impl Send for Spaces
impl Sync for Spaces
impl Unpin for Spaces
impl UnwindSafe for Spaces
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