pub enum IndexError {
IntError(ParseIntError),
ParseError(String),
CustomError(String),
}
Variants§
Trait Implementations§
Source§impl Debug for IndexError
impl Debug for IndexError
Source§impl From<IndexError> for Error
impl From<IndexError> for Error
Source§fn from(e: IndexError) -> Self
fn from(e: IndexError) -> Self
Converts to this type from the input type.
Source§impl PartialEq for IndexError
impl PartialEq for IndexError
impl StructuralPartialEq for IndexError
Auto Trait Implementations§
impl Freeze for IndexError
impl RefUnwindSafe for IndexError
impl Send for IndexError
impl Sync for IndexError
impl Unpin for IndexError
impl UnwindSafe for IndexError
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