Struct FlatMap
struct FlatMap<F, G, H, I, O, O2, E> { ... }
where
F: Parser<I, O, E>,
G: FnMut(O) -> H,
H: Parser<I, O2, E>
Parser implementation for Parser::flat_map
Implementations
impl<F, G, H, I, O, O2, E> Freeze for FlatMap<F, G, H, I, O, O2, E>
impl<F, G, H, I, O, O2, E> Parser for FlatMap<F, G, H, I, O, O2, E>
fn parse_next(self: &mut Self, i: &mut I) -> Result<O2, E>
impl<F, G, H, I, O, O2, E> RefUnwindSafe for FlatMap<F, G, H, I, O, O2, E>
impl<F, G, H, I, O, O2, E> Send for FlatMap<F, G, H, I, O, O2, E>
impl<F, G, H, I, O, O2, E> Sync for FlatMap<F, G, H, I, O, O2, E>
impl<F, G, H, I, O, O2, E> Unpin for FlatMap<F, G, H, I, O, O2, E>
impl<F, G, H, I, O, O2, E> UnsafeUnpin for FlatMap<F, G, H, I, O, O2, E>
impl<F, G, H, I, O, O2, E> UnwindSafe for FlatMap<F, G, H, I, O, O2, E>
impl<I, O, E, P> ModalParser for FlatMap<F, G, H, I, O, O2, E>
impl<T> Any for FlatMap<F, G, H, I, O, O2, E>
fn type_id(self: &Self) -> TypeId
impl<T> Borrow for FlatMap<F, G, H, I, O, O2, E>
fn borrow(self: &Self) -> &T
impl<T> BorrowMut for FlatMap<F, G, H, I, O, O2, E>
fn borrow_mut(self: &mut Self) -> &mut T
impl<T> From for FlatMap<F, G, H, I, O, O2, E>
fn from(t: T) -> TReturns the argument unchanged.
impl<T, U> Into for FlatMap<F, G, H, I, O, O2, 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 FlatMap<F, G, H, I, O, O2, E>
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
impl<T, U> TryInto for FlatMap<F, G, H, I, O, O2, E>
fn try_into(self: Self) -> Result<U, <U as TryFrom<T>>::Error>