Seq

Struct Seq 

Source
pub struct Seq<A, const N: usize>(pub [A; N]);
Expand description

A pattern that matches a sequence of sub-patterns.

Tuple Fields§

§0: [A; N]

Trait Implementations§

Source§

impl<'a, Reference, A, D, const N: usize> Pattern<'a, Reference> for Seq<A, N>
where Reference: Iterator + Clone + PeekableExt, A: Pattern<'a, Reference, Dest = D>, D: Destination<Reference::Item> + Default, Reference::Item: Satisfies<<<A as Pattern<'a, Reference>>::Iter as Iterator>::Item>,

Source§

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

Source§

type Dest = Vec<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<A, const N: usize> Freeze for Seq<A, N>
where A: Freeze,

§

impl<A, const N: usize> RefUnwindSafe for Seq<A, N>
where A: RefUnwindSafe,

§

impl<A, const N: usize> Send for Seq<A, N>
where A: Send,

§

impl<A, const N: usize> Sync for Seq<A, N>
where A: Sync,

§

impl<A, const N: usize> Unpin for Seq<A, N>
where A: Unpin,

§

impl<A, const N: usize> UnwindSafe for Seq<A, N>
where A: 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.