pub enum TypedEnvVarError<E> {
Read(EnvVarReadError),
Parse(E),
}Expand description
Errors returned while reading a typed environment variable.
Variants§
Read(EnvVarReadError)
Reading the environment variable failed.
Parse(E)
Parsing the environment variable value failed.
Trait Implementations§
Source§impl<E: Clone> Clone for TypedEnvVarError<E>
impl<E: Clone> Clone for TypedEnvVarError<E>
Source§fn clone(&self) -> TypedEnvVarError<E>
fn clone(&self) -> TypedEnvVarError<E>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<E: Debug> Debug for TypedEnvVarError<E>
impl<E: Debug> Debug for TypedEnvVarError<E>
Source§impl<E: Display> Display for TypedEnvVarError<E>
impl<E: Display> Display for TypedEnvVarError<E>
Source§impl<E> Error for TypedEnvVarError<E>
impl<E> Error for TypedEnvVarError<E>
1.30.0 · 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<E: PartialEq> PartialEq for TypedEnvVarError<E>
impl<E: PartialEq> PartialEq for TypedEnvVarError<E>
Source§fn eq(&self, other: &TypedEnvVarError<E>) -> bool
fn eq(&self, other: &TypedEnvVarError<E>) -> bool
Tests for
self and other values to be equal, and is used by ==.impl<E: Eq> Eq for TypedEnvVarError<E>
impl<E> StructuralPartialEq for TypedEnvVarError<E>
Auto Trait Implementations§
impl<E> Freeze for TypedEnvVarError<E>where
E: Freeze,
impl<E> RefUnwindSafe for TypedEnvVarError<E>where
E: RefUnwindSafe,
impl<E> Send for TypedEnvVarError<E>where
E: Send,
impl<E> Sync for TypedEnvVarError<E>where
E: Sync,
impl<E> Unpin for TypedEnvVarError<E>where
E: Unpin,
impl<E> UnsafeUnpin for TypedEnvVarError<E>where
E: UnsafeUnpin,
impl<E> UnwindSafe for TypedEnvVarError<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