pub enum CedError {
CommandError(String),
CsvDataError(DcsvError),
InvalidColumn(String),
InvalidPageOperation(String),
InvalidRowData(String),
IoError(IoErrorWithMeta),
OutOfRangeError,
}
Variants§
CommandError(String)
CsvDataError(DcsvError)
InvalidColumn(String)
InvalidPageOperation(String)
InvalidRowData(String)
IoError(IoErrorWithMeta)
OutOfRangeError
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for CedError
impl !RefUnwindSafe for CedError
impl Send for CedError
impl Sync for CedError
impl Unpin for CedError
impl !UnwindSafe for CedError
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