pub struct OpParserInstance<P: PunctExt, F> { /* private fields */ }
Expand description

An instance for doing manual parsing of operators.

Implementations§

source§

impl<P: PunctExt, F: MatchOpFn> OpParserInstance<P, F>

source

pub fn clear(&mut self)

Clear the state to remove any accumulated op.

source

pub fn apply(&mut self, punct: P) -> Option<Result<Op<P::Span>, Error<P::Span>>>

Add a Punct to the currently accumulating op. This may return a new Op, or None if more puncts are needed. If punct has alone spacing and the accumulated op isn’t valid, it returns an error. Call OpParserInstance::finish to finish parsing.

source

pub fn finish(&mut self) -> Option<Result<Op<P::Span>, Error<P::Span>>>

Finish parsing the currently accumulated op.

Trait Implementations§

source§

impl<P: Clone + PunctExt, F: Clone> Clone for OpParserInstance<P, F>
where P::Span: Clone,

source§

fn clone(&self) -> OpParserInstance<P, F>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more

Auto Trait Implementations§

§

impl<P, F> Freeze for OpParserInstance<P, F>
where F: Freeze, P: Freeze,

§

impl<P, F> RefUnwindSafe for OpParserInstance<P, F>

§

impl<P, F> Send for OpParserInstance<P, F>
where F: Send, P: Send, <P as ProcMacroExt>::SpanExt: Send,

§

impl<P, F> Sync for OpParserInstance<P, F>
where F: Sync, P: Sync, <P as ProcMacroExt>::SpanExt: Sync,

§

impl<P, F> Unpin for OpParserInstance<P, F>
where F: Unpin, P: Unpin, <P as ProcMacroExt>::SpanExt: Unpin,

§

impl<P, F> UnwindSafe for OpParserInstance<P, F>

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where 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 T
where 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> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where 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 T
where 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.