Struct TagNoCase
pub struct TagNoCase<T, E> { /* private fields */ }
Case insensitive Tag implementation
Trait Implementations
impl<I, Error: ParseError<I>, T> Parser<I> for TagNoCase<T, Error>
where
I: Input + Compare<T>,
T: Input + Clone,
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<T, E> Freeze for TagNoCase<T, E>
where
T: Freeze,
PhantomData<E>: Freeze,
impl<T, E> RefUnwindSafe for TagNoCase<T, E>
where
T: RefUnwindSafe,
PhantomData<E>: RefUnwindSafe,
impl<T, E> Send for TagNoCase<T, E>
where
T: Send,
PhantomData<E>: Send,
impl<T, E> Sync for TagNoCase<T, E>
where
T: Sync,
PhantomData<E>: Sync,
impl<T, E> Unpin for TagNoCase<T, E>
where
T: Unpin,
PhantomData<E>: Unpin,
impl<T, E> UnsafeUnpin for TagNoCase<T, E>
where
T: UnsafeUnpin,
PhantomData<E>: UnsafeUnpin,
impl<T, E> UnwindSafe for TagNoCase<T, E>
where
T: UnwindSafe,
PhantomData<E>: UnwindSafe,
Blanket Implementations
impl<T> Any for TagNoCase<T, E>
where
T: 'static + ?Sized,
fn type_id(&self) -> TypeId
impl<T> Borrow<T> for TagNoCase<T, E>
where
T: ?Sized,
fn borrow(&self) -> &T
impl<T> BorrowMut<T> for TagNoCase<T, E>
where
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
impl<T> From<T> for TagNoCase<T, E>
fn from(t: T) -> TReturns the argument unchanged.
impl<T, U> Into<U> for TagNoCase<T, 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 TagNoCase<T, E>
where
U: Into<T>,
type Error = never;fn try_from(value: U) -> Result<T, never>
impl<T, U> TryInto<U> for TagNoCase<T, E>
where
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error;fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>