Or

Struct Or 

Source
pub struct Or<A, B>(pub A, pub B);
Expand description

A pattern that matches either of two sub-patterns.

Tuple Fields§

§0: A§1: B

Trait Implementations§

Source§

impl<'a, Reference, A, B, D> Pattern<'a, Reference> for Or<A, B>
where Reference: Iterator + Clone + PeekableExt, A: Pattern<'a, Reference, Dest = D>, B: Pattern<'a, Reference, Dest = D>, D: Destination<Reference::Item> + Clone, Reference::Item: Satisfies<<<A as Pattern<'a, Reference>>::Iter as Iterator>::Item> + Satisfies<<<B as Pattern<'a, Reference>>::Iter as Iterator>::Item>,

Source§

type Iter = Peekable<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(&'a self, reference: &mut Reference) -> bool
where Reference::Item: Satisfies<<Self::Iter as Iterator>::Item>,

Consume items from the reference iterator.
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.

Auto Trait Implementations§

§

impl<A, B> Freeze for Or<A, B>
where A: Freeze, B: Freeze,

§

impl<A, B> RefUnwindSafe for Or<A, B>

§

impl<A, B> Send for Or<A, B>
where A: Send, B: Send,

§

impl<A, B> Sync for Or<A, B>
where A: Sync, B: Sync,

§

impl<A, B> Unpin for Or<A, B>
where A: Unpin, B: Unpin,

§

impl<A, B> UnwindSafe for Or<A, B>
where A: UnwindSafe, B: 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.