pub struct ParseOkError<I: Input> {
pub errors: Merger<I, StdErr<I::Item>>,
}Expand description
Error returned by parse_ok_once.
Fields§
§errors: Merger<I, StdErr<I::Item>>Implementations§
Source§impl<I: Input> ParseOkError<I>
impl<I: Input> ParseOkError<I>
Trait Implementations§
Source§impl<I> Debug for ParseOkError<I>
impl<I> Debug for ParseOkError<I>
Source§impl<I> Display for ParseOkError<I>
impl<I> Display for ParseOkError<I>
Source§impl<I> Error for ParseOkError<I>
impl<I> Error for ParseOkError<I>
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Auto Trait Implementations§
impl<I> Freeze for ParseOkError<I>
impl<I> RefUnwindSafe for ParseOkError<I>
impl<I> Send for ParseOkError<I>
impl<I> Sync for ParseOkError<I>
impl<I> Unpin for ParseOkError<I>
impl<I> UnwindSafe for ParseOkError<I>
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