pub enum EnvroError {
File {
source: Error,
file: String,
},
Parse {
line: String,
reason: String,
},
Validation {
errors: Vec<ValidationIssue>,
},
Decrypt {
key: String,
reason: String,
},
}Variants§
Trait Implementations§
Source§impl Debug for EnvroError
impl Debug for EnvroError
Source§impl Display for EnvroError
impl Display for EnvroError
Source§impl Error for EnvroError
impl Error for EnvroError
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 EnvroError
impl !UnwindSafe for EnvroError
impl Freeze for EnvroError
impl Send for EnvroError
impl Sync for EnvroError
impl Unpin for EnvroError
impl UnsafeUnpin for EnvroError
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