Sep

Struct Sep 

Source
pub struct Sep<Sep, P>(pub Sep, pub P);
Expand description

A pattern that matches a sequence of sub-patterns separated by a separator pattern.

Tuple Fields§

§0: Sep§1: P

Trait Implementations§

Source§

impl<'a, Reference, SepT, PatT, SD, PD> Pattern<'a, Reference> for Sep<SepT, PatT>
where Reference: Iterator + Clone + PeekableExt, SepT: Pattern<'a, Reference, Dest = SD>, PatT: Pattern<'a, Reference, Dest = PD>, SD: Destination<Reference::Item> + Default + Clone, PD: Destination<Reference::Item> + Default + Clone, Reference::Item: Satisfies<<<SepT as Pattern<'a, Reference>>::Iter as Iterator>::Item> + Satisfies<<<PatT as Pattern<'a, Reference>>::Iter as Iterator>::Item> + Clone,

Source§

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

Source§

type Dest = Vec<(SD, PD)>

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<Sep, P> Freeze for Sep<Sep, P>
where Sep: Freeze, P: Freeze,

§

impl<Sep, P> RefUnwindSafe for Sep<Sep, P>

§

impl<Sep, P> Send for Sep<Sep, P>
where Sep: Send, P: Send,

§

impl<Sep, P> Sync for Sep<Sep, P>
where Sep: Sync, P: Sync,

§

impl<Sep, P> Unpin for Sep<Sep, P>
where Sep: Unpin, P: Unpin,

§

impl<Sep, P> UnwindSafe for Sep<Sep, P>
where Sep: UnwindSafe, P: UnwindSafe,

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.