pub enum VarError {
NotPresent,
NotUnicode(OsString),
}
Expand description
与环境变量交互的操作的错误类型。
可能是从 env::var()
返回的。
Variants§
NotPresent
当前进程的环境中不存在指定的环境变量。
NotUnicode(OsString)
找到了指定的环境变量,但是它不包含有效的 unicode 数据。 找到的数据作为该变体的有效载荷返回。
Trait Implementations§
source§impl Error for VarError
impl Error for VarError
impl Eq for VarError
impl StructuralEq for VarError
impl StructuralPartialEq for VarError
Auto Trait Implementations§
impl RefUnwindSafe for VarError
impl Send for VarError
impl Sync for VarError
impl Unpin for VarError
impl UnwindSafe for VarError
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
从拥有的值中借用。 Read more