Struct EscapedTransform
pub struct EscapedTransform<F, G, E, ExtendItem, Output> { /* private fields */ }
Parser implementation for [escaped_transform]
Trait Implementations
impl<I, Error, F, G, ExtendItem, Output> Parser<I> for EscapedTransform<F, G, Error, ExtendItem, Output>
where
I: Clone + Offset + Input + ExtendInto<Item = ExtendItem, Extender = Output>,
<F as Parser<I>>::Output: ExtendInto<Item = ExtendItem, Extender = Output>,
<G as Parser<I>>::Output: ExtendInto<Item = ExtendItem, Extender = Output>,
<I as Input>::Item: AsChar,
F: Parser<I, Error = Error>,
G: Parser<I, Error = Error>,
Error: ParseError<I>,
type Output = Output;type Error = Error;fn process<OM: OutputMode>(&mut self, input: I) -> PResult<OM, I, Self::Output, Self::Error>
Auto Trait Implementations
impl<F, G, E, ExtendItem, Output> Freeze for EscapedTransform<F, G, E, ExtendItem, Output>
where
F: Freeze,
G: Freeze,
PhantomData<E>: Freeze,
PhantomData<ExtendItem>: Freeze,
PhantomData<Output>: Freeze,
impl<F, G, E, ExtendItem, Output> RefUnwindSafe for EscapedTransform<F, G, E, ExtendItem, Output>
where
F: RefUnwindSafe,
G: RefUnwindSafe,
PhantomData<E>: RefUnwindSafe,
PhantomData<ExtendItem>: RefUnwindSafe,
PhantomData<Output>: RefUnwindSafe,
impl<F, G, E, ExtendItem, Output> Send for EscapedTransform<F, G, E, ExtendItem, Output>
where
F: Send,
G: Send,
PhantomData<E>: Send,
PhantomData<ExtendItem>: Send,
PhantomData<Output>: Send,
impl<F, G, E, ExtendItem, Output> Sync for EscapedTransform<F, G, E, ExtendItem, Output>
where
F: Sync,
G: Sync,
PhantomData<E>: Sync,
PhantomData<ExtendItem>: Sync,
PhantomData<Output>: Sync,
impl<F, G, E, ExtendItem, Output> Unpin for EscapedTransform<F, G, E, ExtendItem, Output>
where
F: Unpin,
G: Unpin,
PhantomData<E>: Unpin,
PhantomData<ExtendItem>: Unpin,
PhantomData<Output>: Unpin,
impl<F, G, E, ExtendItem, Output> UnsafeUnpin for EscapedTransform<F, G, E, ExtendItem, Output>
where
F: UnsafeUnpin,
G: UnsafeUnpin,
PhantomData<E>: UnsafeUnpin,
PhantomData<ExtendItem>: UnsafeUnpin,
PhantomData<Output>: UnsafeUnpin,
impl<F, G, E, ExtendItem, Output> UnwindSafe for EscapedTransform<F, G, E, ExtendItem, Output>
where
F: UnwindSafe,
G: UnwindSafe,
PhantomData<E>: UnwindSafe,
PhantomData<ExtendItem>: UnwindSafe,
PhantomData<Output>: UnwindSafe,
Blanket Implementations
impl<T> Any for EscapedTransform<F, G, E, ExtendItem, Output>
where
T: 'static + ?Sized,
fn type_id(&self) -> TypeId
impl<T> Borrow<T> for EscapedTransform<F, G, E, ExtendItem, Output>
where
T: ?Sized,
fn borrow(&self) -> &T
impl<T> BorrowMut<T> for EscapedTransform<F, G, E, ExtendItem, Output>
where
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
impl<T> From<T> for EscapedTransform<F, G, E, ExtendItem, Output>
fn from(t: T) -> TReturns the argument unchanged.
impl<T, U> Into<U> for EscapedTransform<F, G, E, ExtendItem, Output>
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 EscapedTransform<F, G, E, ExtendItem, Output>
where
U: Into<T>,
type Error = never;fn try_from(value: U) -> Result<T, never>
impl<T, U> TryInto<U> for EscapedTransform<F, G, E, ExtendItem, Output>
where
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error;fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>