pub enum ErrorState {
Error(String),
}Expand description
Occurs when an error is detected
Variants§
Implementations§
Source§impl ErrorState
impl ErrorState
pub fn parse<'a>( split: impl DoubleEndedIterator<Item = &'a str> + Send, ) -> ErrorState
Auto Trait Implementations§
impl Freeze for ErrorState
impl RefUnwindSafe for ErrorState
impl Send for ErrorState
impl Sync for ErrorState
impl Unpin for ErrorState
impl UnwindSafe for ErrorState
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