Struct Until

Source
pub struct Until<'a, T, V> { /* private fields */ }
Expand description

A Peekable that peeks until the given element is found in the Scanner.

This Peekable will temporarily advance the position of the Scanner to find a match. If a match is found, the Scanner is rewound to the original position and a PeekResult is returned. If no match is found, the Scanner is rewound to the original position and an Err is returned.

Implementations§

Source§

impl<'a, T, V> Until<'a, T, V>

Source

pub fn new(element: V) -> Until<'a, T, V>

Trait Implementations§

Source§

impl<'a, T, V> Peekable<'a, T, V, V> for Until<'a, T, V>
where V: RecognizeSelf<'a, T, V> + Clone,

Source§

fn peek(&self, data: &Scanner<'a, T>) -> ParseResult<PeekResult<V, V>>

Peek until the given element is found in the Scanner.

This function will temporarily advance the position of the Scanner to find a match. If a match is found, the Scanner is rewound to the original position and a PeekResult is returned. If no match is found, the Scanner is rewound to the original position and an Err is returned.

§Arguments
  • data - The Scanner to use when matching.
§Returns

A PeekResult if the element matches the current position of the Scanner, or an Err otherwise.

Auto Trait Implementations§

§

impl<'a, T, V> Freeze for Until<'a, T, V>
where V: Freeze,

§

impl<'a, T, V> RefUnwindSafe for Until<'a, T, V>

§

impl<'a, T, V> Send for Until<'a, T, V>
where V: Send, T: Sync,

§

impl<'a, T, V> Sync for Until<'a, T, V>
where V: Sync, T: Sync,

§

impl<'a, T, V> Unpin for Until<'a, T, V>
where V: Unpin,

§

impl<'a, T, V> UnwindSafe for Until<'a, T, V>

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.