pub struct ParseResult<I, E> {
pub usage: Usage,
pub result: Result<I, TopLevelError<E>>,
}Fields§
§usage: Usage§result: Result<I, TopLevelError<E>>Auto Trait Implementations§
impl<I, E> Freeze for ParseResult<I, E>
impl<I, E> RefUnwindSafe for ParseResult<I, E>where
I: RefUnwindSafe,
E: RefUnwindSafe,
impl<I, E> Send for ParseResult<I, E>
impl<I, E> Sync for ParseResult<I, E>
impl<I, E> Unpin for ParseResult<I, E>
impl<I, E> UnwindSafe for ParseResult<I, E>where
I: UnwindSafe,
E: 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