pub enum EnvProblem {
Unset,
NotUnicode,
}Expand description
Why a variable could not be substituted (issue #1116).
Variants§
Unset
Not set, and the tag gives no default, so the tag renders empty.
NotUnicode
Set, but the value is not valid Unicode, so the tag renders its default, or empty without one.
Trait Implementations§
Source§impl Clone for EnvProblem
impl Clone for EnvProblem
impl Copy for EnvProblem
Source§impl Debug for EnvProblem
impl Debug for EnvProblem
impl Eq for EnvProblem
Source§impl PartialEq for EnvProblem
impl PartialEq for EnvProblem
impl StructuralPartialEq for EnvProblem
Auto Trait Implementations§
impl Freeze for EnvProblem
impl RefUnwindSafe for EnvProblem
impl Send for EnvProblem
impl Sync for EnvProblem
impl Unpin for EnvProblem
impl UnsafeUnpin for EnvProblem
impl UnwindSafe for EnvProblem
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