pub struct MapRight<F>(/* private fields */);
Trait Implementations§
Source§impl<I, O1, O2, F> ParserImpl<I> for MapRight<F>where
F: ParserImpl<I, Output = (O1, O2)>,
impl<I, O1, O2, F> ParserImpl<I> for MapRight<F>where
F: ParserImpl<I, Output = (O1, O2)>,
Source§type Error = <F as ParserImpl<I>>::Error
type Error = <F as ParserImpl<I>>::Error
The error type of the parser
Auto Trait Implementations§
impl<F> Freeze for MapRight<F>where
F: Freeze,
impl<F> RefUnwindSafe for MapRight<F>where
F: RefUnwindSafe,
impl<F> Send for MapRight<F>where
F: Send,
impl<F> Sync for MapRight<F>where
F: Sync,
impl<F> Unpin for MapRight<F>where
F: Unpin,
impl<F> UnwindSafe for MapRight<F>where
F: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more