Trait texlang::parse::Parsable

source ·
pub trait Parsable: Sized {
    // Required method
    fn parse_impl<S: TexlangState>(
        input: &mut ExpandedStream<S>,
    ) -> Result<Self>;

    // Provided method
    fn parse<S: TexlangState, I>(input: &mut I) -> Result<Self>
       where I: AsMut<ExpandedStream<S>> { ... }
}
Expand description

Implementations of this trait are elements of the TeX grammar than can be parsed from a stream of tokens.

Required Methods§

source

fn parse_impl<S: TexlangState>(input: &mut ExpandedStream<S>) -> Result<Self>

Parses a value from the vm::ExpandedStream.

Provided Methods§

source

fn parse<S: TexlangState, I>(input: &mut I) -> Result<Self>
where I: AsMut<ExpandedStream<S>>,

Parses a value from an input stream.

This method just delegates to Parsable::parse_impl.

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl Parsable for Option<CommandRef>

source§

fn parse_impl<S: TexlangState>(input: &mut ExpandedStream<S>) -> Result<Self>

source§

impl Parsable for Option<char>

source§

fn parse_impl<S: TexlangState>(input: &mut ExpandedStream<S>) -> Result<Self>

source§

impl Parsable for Option<Font>

source§

fn parse_impl<S: TexlangState>(input: &mut ExpandedStream<S>) -> Result<Self>

source§

impl Parsable for char

source§

fn parse_impl<S: TexlangState>(input: &mut ExpandedStream<S>) -> Result<Self>

source§

impl Parsable for i32

source§

fn parse_impl<S: TexlangState>(input: &mut ExpandedStream<S>) -> Result<Self>

source§

impl Parsable for Vec<Token>

source§

fn parse_impl<S: TexlangState>(input: &mut ExpandedStream<S>) -> Result<Self>

source§

impl Parsable for Glue

source§

fn parse_impl<S: TexlangState>(input: &mut ExpandedStream<S>) -> Result<Self>

source§

impl Parsable for Scaled

source§

fn parse_impl<S: TexlangState>(input: &mut ExpandedStream<S>) -> Result<Self>

source§

impl Parsable for ScaledUnit

source§

fn parse_impl<S: TexlangState>(input: &mut ExpandedStream<S>) -> Result<Self>

source§

impl<T1: Parsable, T2: Parsable, T3: Parsable, T4: Parsable, T5: Parsable> Parsable for (T1, T2, T3, T4, T5)

source§

fn parse_impl<S: TexlangState>(input: &mut ExpandedStream<S>) -> Result<Self>

source§

impl<T2: Parsable, T3: Parsable, T4: Parsable, T5: Parsable> Parsable for (T2, T3, T4, T5)

source§

fn parse_impl<S: TexlangState>(input: &mut ExpandedStream<S>) -> Result<Self>

source§

impl<T3: Parsable, T4: Parsable, T5: Parsable> Parsable for (T3, T4, T5)

source§

fn parse_impl<S: TexlangState>(input: &mut ExpandedStream<S>) -> Result<Self>

source§

impl<T4: Parsable, T5: Parsable> Parsable for (T4, T5)

source§

fn parse_impl<S: TexlangState>(input: &mut ExpandedStream<S>) -> Result<Self>

Implementors§