pub struct ReadError {
pub line: usize,
pub column: usize,
/* private fields */
}Expand description
Errors that can occur when reading CSV data.
Fields§
§line: usize1-indexed line number
column: usize1-indexed byte offset within the line
Implementations§
Source§impl ReadError
impl ReadError
Sourcepub fn kind(&self) -> &ReadErrorKind
pub fn kind(&self) -> &ReadErrorKind
Returns a reference to the ReadErrorKind of this error.
Trait Implementations§
Source§impl Error for ReadError
Available on crate feature std only.
impl Error for ReadError
Available on crate feature
std only.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 !RefUnwindSafe for ReadError
impl !UnwindSafe for ReadError
impl Freeze for ReadError
impl Send for ReadError
impl Sync for ReadError
impl Unpin for ReadError
impl UnsafeUnpin for ReadError
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