Token

Struct Token 

Source
pub struct Token<Ref, Dest> { /* private fields */ }

Trait Implementations§

Source§

impl<'a, Reference, RefT, D> Pattern<'a, Reference> for Token<RefT, D>
where Reference: Iterator<Item = RefT> + Clone + PeekableExt,

Source§

type Iter = Empty<<Reference as Iterator>::Item>

Source§

type Dest = D

Source§

fn get_iter(&'a self) -> Self::Iter

Get an iterator over the pattern’s items.
Source§

fn consume_with_dest( &'a self, reference: &mut Reference, dest: Option<&RefCell<Self::Dest>>, ) -> bool
where Reference::Item: Satisfies<<Self::Iter as Iterator>::Item>,

Consume items from the reference iterator, optionally storing matched items in a destination.
Source§

fn get_dest_mut(&self) -> Option<RefMut<'_, Self::Dest>>

Get a mutable reference to the pattern’s internal destination, if any.
Source§

fn matches<'s, R>(&'a self, reference: &'s R) -> bool
where R: Iterable<'s, Iter = Reference> + 's, Self::Dest: Destination<Reference::Item>, Reference: PeekableExt, Reference::Item: Satisfies<<Self::Iter as Iterator>::Item>,

Match the pattern against the reference iterator.
Source§

fn consume(&'a self, reference_iter: &mut Reference) -> bool
where Reference: PeekableExt, Self::Dest: Destination<Reference::Item>, Reference::Item: Satisfies<<Self::Iter as Iterator>::Item>,

Consume items from the reference iterator.

Auto Trait Implementations§

§

impl<Ref, Dest> Freeze for Token<Ref, Dest>

§

impl<Ref, Dest> RefUnwindSafe for Token<Ref, Dest>

§

impl<Ref, Dest> Send for Token<Ref, Dest>

§

impl<Ref, Dest> Sync for Token<Ref, Dest>

§

impl<Ref, Dest> Unpin for Token<Ref, Dest>

§

impl<Ref, Dest> UnwindSafe for Token<Ref, Dest>

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, U> TryFrom<U> for T
where U: Into<T>,

Source§

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>,

Source§

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.