pub enum VecsError {
    InputNotAFile,
    InvalidFileLength,
    IOError(Error),
    InvalidDimension(usize),
    FileExists,
}Expand description
Error types that vecs operations can return.
Variants§
Trait Implementations§
Source§impl Error for VecsError
 
impl Error for VecsError
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 Freeze for VecsError
impl !RefUnwindSafe for VecsError
impl Send for VecsError
impl Sync for VecsError
impl Unpin for VecsError
impl !UnwindSafe for VecsError
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