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

Grammar with support of type annotations. Works as a decorator.

Examples

use arithmetic_parser::grammars::{F32Grammar, Parse};
use arithmetic_typing::Annotated;

let code = "x: [Num] = (1, 2, 3);";
let ast = Annotated::<F32Grammar>::parse_statements(code)?;

Trait Implementations§

source§

impl<T: Debug> Debug for Annotated<T>

source§

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

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

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

§

type Type<'a> = TypeAst<'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 Annotated<T>

Supports all syntax features.

§

type Base = Annotated<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 Annotated<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 Annotated<T>where T: RefUnwindSafe,

§

impl<T> Send for Annotated<T>where T: Send,

§

impl<T> Sync for Annotated<T>where T: Sync,

§

impl<T> Unpin for Annotated<T>where T: Unpin,

§

impl<T> UnwindSafe for Annotated<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.