pub struct Untyped<T>(/* private fields */);
Expand description

Wrapper for ParseLiteral types that allows to use them as a Grammar or Parser.

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 Parser, all Features are on except for type annotations.

Examples

See ParseLiteral docs for an example of usage.

Trait Implementations§

source§

impl<T: Debug> Debug for Untyped<T>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<T: ParseLiteral> Grammar for Untyped<T>

§

type Type<'a> = ()

Type of the type annotation used in the grammar. This type may be parametric by the input lifetime.
source§

fn parse_type(input: InputSpan<'_>) -> NomResult<'_, Self::Type<'_>>

Attempts to parse a type annotation. Read more
source§

impl<T: ParseLiteral> Parse for Untyped<T>

§

type Base = Untyped<T>

Base for the grammar providing the literal and type annotation parsers.
source§

const FEATURES: Features = _

Features supported by this grammar.
source§

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,

Parses a potentially incomplete list of statements.
source§

impl<T: ParseLiteral> ParseLiteral for Untyped<T>

§

type Lit = <T as ParseLiteral>::Lit

Type of the literal used in the grammar.
source§

fn parse_literal(input: InputSpan<'_>) -> NomResult<'_, Self::Lit>

Attempts to parse a literal. Read more

Auto Trait Implementations§

§

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> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.