Enum sqlness::SqlnessError
source · pub enum SqlnessError {
ReadPath {
source: Error,
path: PathBuf,
},
ParseToml {
source: Error,
file: PathBuf,
},
IO(Error),
ReadResult(FromUtf8Error),
RunFailed {
count: usize,
},
}
Variants§
Trait Implementations§
source§impl Debug for SqlnessError
impl Debug for SqlnessError
source§impl Display for SqlnessError
impl Display for SqlnessError
source§impl Error for SqlnessError
impl Error for SqlnessError
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 SqlnessError
impl From<Error> for SqlnessError
source§impl From<FromUtf8Error> for SqlnessError
impl From<FromUtf8Error> for SqlnessError
source§fn from(source: FromUtf8Error) -> Self
fn from(source: FromUtf8Error) -> Self
Converts to this type from the input type.