Struct TakeUntil

struct TakeUntil<T, E> { ... }

Parser implementation for [take_until]

Implementations

impl<I, T, Error: ParseError<I>> Parser for TakeUntil<T, Error>

fn process<OM: OutputMode>(self: &mut Self, i: I) -> crate::PResult<OM, I, <Self as >::Output, <Self as >::Error>

impl<T> Any for TakeUntil<T, E>

fn type_id(self: &Self) -> TypeId

impl<T> Borrow for TakeUntil<T, E>

fn borrow(self: &Self) -> &T

impl<T> BorrowMut for TakeUntil<T, E>

fn borrow_mut(self: &mut Self) -> &mut T

impl<T> From for TakeUntil<T, E>

fn from(t: T) -> T

Returns the argument unchanged.

impl<T, E> Freeze for TakeUntil<T, E>

impl<T, E> RefUnwindSafe for TakeUntil<T, E>

impl<T, E> Send for TakeUntil<T, E>

impl<T, E> Sync for TakeUntil<T, E>

impl<T, E> Unpin for TakeUntil<T, E>

impl<T, E> UnwindSafe for TakeUntil<T, E>

impl<T, U> Into for TakeUntil<T, E>

fn into(self: Self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of [From]<T> for U chooses to do.

impl<T, U> TryFrom for TakeUntil<T, E>

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

impl<T, U> TryInto for TakeUntil<T, E>

fn try_into(self: Self) -> Result<U, <U as TryFrom<T>>::Error>