Enum raphtory_io::graph_loader::source::csv_loader::CsvErr
source · pub enum CsvErr {
IoError(Error),
CsvError(Error),
}Variants§
IoError(Error)
An IO error that occurred during file read.
CsvError(Error)
A CSV parsing error that occurred while parsing the CSV data.
Trait Implementations§
source§impl Error for CsvErr
impl Error for CsvErr
source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
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 !RefUnwindSafe for CsvErr
impl Send for CsvErr
impl Sync for CsvErr
impl Unpin for CsvErr
impl !UnwindSafe for CsvErr
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