pub struct SimpleEnvError {
pub kind: String,
pub list: Option<Vec<(String, String)>>,
/* private fields */
}Fields§
§kind: String§list: Option<Vec<(String, String)>>Trait Implementations§
Source§impl Debug for SimpleEnvError
impl Debug for SimpleEnvError
Source§impl Display for SimpleEnvError
impl Display for SimpleEnvError
Source§impl Error for SimpleEnvError
impl Error for SimpleEnvError
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()
Source§impl From<Error> for SimpleEnvError
impl From<Error> for SimpleEnvError
Source§impl From<SimpleEnvError> for Error
impl From<SimpleEnvError> for Error
Source§fn from(err: SimpleEnvError) -> Self
fn from(err: SimpleEnvError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for SimpleEnvError
impl RefUnwindSafe for SimpleEnvError
impl Send for SimpleEnvError
impl Sync for SimpleEnvError
impl Unpin for SimpleEnvError
impl UnwindSafe for SimpleEnvError
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