Enum csvs_convert::DescribeError
source · pub enum DescribeError {
WriteError(Error),
WriteJSONError(Error),
FileNotExist(String),
CSVRead(Error),
}Variants§
Trait Implementations§
source§impl Debug for DescribeError
impl Debug for DescribeError
source§impl Display for DescribeError
impl Display for DescribeError
source§impl Error for DescribeError
impl Error for DescribeError
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()
source§impl From<Error> for DescribeError
impl From<Error> for DescribeError
source§impl From<Error> for DescribeError
impl From<Error> for DescribeError
Auto Trait Implementations§
impl !RefUnwindSafe for DescribeError
impl Send for DescribeError
impl Sync for DescribeError
impl Unpin for DescribeError
impl !UnwindSafe for DescribeError
Blanket Implementations§
source§impl<T> AsErrorSource for Twhere
T: 'static + Error,
impl<T> AsErrorSource for Twhere
T: 'static + Error,
source§fn as_error_source(&self) -> &(dyn Error + 'static)
fn as_error_source(&self) -> &(dyn Error + 'static)
For maximum effectiveness, this needs to be called as a method
to benefit from Rust’s automatic dereferencing of method
receivers.