Struct Take
struct Take<E> { ... }
Parser implementation for [take]
Implementations
impl<E> Freeze for Take<E>
impl<E> RefUnwindSafe for Take<E>
impl<E> Send for Take<E>
impl<E> Sync for Take<E>
impl<E> Unpin for Take<E>
impl<E> UnwindSafe for Take<E>
impl<I, Error: ParseError<I>> Parser for Take<Error>
fn process<OM: OutputMode>(self: &mut Self, i: I) -> crate::PResult<OM, I, <Self as >::Output, <Self as >::Error>
impl<T> Any for Take<E>
fn type_id(self: &Self) -> TypeId
impl<T> Borrow for Take<E>
fn borrow(self: &Self) -> &T
impl<T> BorrowMut for Take<E>
fn borrow_mut(self: &mut Self) -> &mut T
impl<T> From for Take<E>
fn from(t: T) -> TReturns the argument unchanged.
impl<T, U> Into for Take<E>
fn into(self: Self) -> UCalls
U::from(self).That is, this conversion is whatever the implementation of
[From]<T> for Uchooses to do.
impl<T, U> TryFrom for Take<E>
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
impl<T, U> TryInto for Take<E>
fn try_into(self: Self) -> Result<U, <U as TryFrom<T>>::Error>