Struct arithmetic_parser::grammars::Untyped
source · pub struct Untyped<T>(/* private fields */);
Expand description
Wrapper for ParseLiteral
types that allows to use them as a Grammar
or Parse
r.
When used as a Grammar
, type annotations are not supported; any use of an annotation will
lead to a parsing error. When used as a Parse
r, all Features
are on except for
type annotations.
§Examples
See ParseLiteral
docs for an example of usage.
Trait Implementations§
source§impl<T: ParseLiteral> Grammar for Untyped<T>
impl<T: ParseLiteral> Grammar for Untyped<T>
source§impl<T: ParseLiteral> Parse for Untyped<T>
impl<T: ParseLiteral> Parse for Untyped<T>
source§fn parse_statements<'a, I>(input: I) -> Result<Block<'a, Self::Base>, Error>where
I: IntoInputSpan<'a>,
Self: Sized,
fn parse_statements<'a, I>(input: I) -> Result<Block<'a, Self::Base>, Error>where
I: IntoInputSpan<'a>,
Self: Sized,
Parses a list of statements.
source§fn parse_streaming_statements<'a, I>(
input: I,
) -> Result<Block<'a, Self::Base>, Error>where
I: IntoInputSpan<'a>,
Self: Sized,
fn parse_streaming_statements<'a, I>(
input: I,
) -> Result<Block<'a, Self::Base>, Error>where
I: IntoInputSpan<'a>,
Self: Sized,
Parses a potentially incomplete list of statements.
source§impl<T: ParseLiteral> ParseLiteral for Untyped<T>
impl<T: ParseLiteral> ParseLiteral for Untyped<T>
Auto Trait Implementations§
impl<T> Freeze for Untyped<T>
impl<T> RefUnwindSafe for Untyped<T>where
T: RefUnwindSafe,
impl<T> Send for Untyped<T>where
T: Send,
impl<T> Sync for Untyped<T>where
T: Sync,
impl<T> Unpin for Untyped<T>where
T: Unpin,
impl<T> UnwindSafe for Untyped<T>where
T: UnwindSafe,
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