Struct MultiSpace0
pub struct MultiSpace0<E> { /* private fields */ }
Parser implementation for [multispace0()]
Trait Implementations
impl<I, Error: ParseError<I>> Parser<I> for MultiSpace0<Error>
where
I: Input,
<I as Input>::Item: AsChar,
type Output = I;type Error = Error;fn process<OM: OutputMode>(&mut self, i: I) -> PResult<OM, I, Self::Output, Self::Error>
Auto Trait Implementations
impl<E> Freeze for MultiSpace0<E>
where
PhantomData<E>: Freeze,
impl<E> RefUnwindSafe for MultiSpace0<E>
where
PhantomData<E>: RefUnwindSafe,
impl<E> Send for MultiSpace0<E>
where
PhantomData<E>: Send,
impl<E> Sync for MultiSpace0<E>
where
PhantomData<E>: Sync,
impl<E> Unpin for MultiSpace0<E>
where
PhantomData<E>: Unpin,
impl<E> UnsafeUnpin for MultiSpace0<E>
where
PhantomData<E>: UnsafeUnpin,
impl<E> UnwindSafe for MultiSpace0<E>
where
PhantomData<E>: UnwindSafe,
Blanket Implementations
impl<T> Any for MultiSpace0<E>
where
T: 'static + ?Sized,
fn type_id(&self) -> TypeId
impl<T> Borrow<T> for MultiSpace0<E>
where
T: ?Sized,
fn borrow(&self) -> &T
impl<T> BorrowMut<T> for MultiSpace0<E>
where
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
impl<T> From<T> for MultiSpace0<E>
fn from(t: T) -> TReturns the argument unchanged.
impl<T, U> Into<U> for MultiSpace0<E>
where
U: From<T>,
fn into(self) -> UCalls
U::from(self).That is, this conversion is whatever the implementation of
[From]<T> for Uchooses to do.
impl<T, U> TryFrom<U> for MultiSpace0<E>
where
U: Into<T>,
type Error = never;fn try_from(value: U) -> Result<T, never>
impl<T, U> TryInto<U> for MultiSpace0<E>
where
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error;fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>