pub enum ParseResult<T> {
PROk(T),
PRErr(ParseError),
}
Variants§
PROk(T)
PRErr(ParseError)
Trait Implementations§
Source§impl<T: PartialEq> PartialEq for ParseResult<T>
impl<T: PartialEq> PartialEq for ParseResult<T>
Auto Trait Implementations§
impl<T> Freeze for ParseResult<T>where
T: Freeze,
impl<T> RefUnwindSafe for ParseResult<T>where
T: RefUnwindSafe,
impl<T> !Send for ParseResult<T>
impl<T> !Sync for ParseResult<T>
impl<T> Unpin for ParseResult<T>where
T: Unpin,
impl<T> UnwindSafe for ParseResult<T>where
T: 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