pub enum EnvironmentConverterError<E> {
VarError(VarError),
ConversionError(E),
}Available on crate feature
environment only.Expand description
The error type used in EnvironmentConverter implementations
Variants§
VarError(VarError)
The error variant for operations interacting with environment variables
ConversionError(E)
The error variant for conversions
Trait Implementations§
source§impl<E: Debug> Debug for EnvironmentConverterError<E>
impl<E: Debug> Debug for EnvironmentConverterError<E>
source§impl<E> Error for EnvironmentConverterError<E>where
Self: Debug + Display,
impl<E> Error for EnvironmentConverterError<E>where Self: Debug + Display,
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()
Auto Trait Implementations§
impl<E> RefUnwindSafe for EnvironmentConverterError<E>where E: RefUnwindSafe,
impl<E> Send for EnvironmentConverterError<E>where E: Send,
impl<E> Sync for EnvironmentConverterError<E>where E: Sync,
impl<E> Unpin for EnvironmentConverterError<E>where E: Unpin,
impl<E> UnwindSafe for EnvironmentConverterError<E>where E: UnwindSafe,
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