std::env::VarError

Enum std::env::VarError

pub enum VarError {
    NotPresent,
    NotUnicode(OsString),
}

Possible errors from the env::var function-

Variants

The specified environment variable was not present in the current process's environment.

The specified environment variable was found, but it did not contain valid unicode data. The found data is returned as a payload of this variant.

Trait Implementations

impl Debug for VarError [src]

Formats the value using the given formatter.

impl PartialEq for VarError [src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Eq for VarError [src]

impl Clone for VarError [src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Display for VarError [src]

Formats the value using the given formatter. Read more

impl Error for VarError [src]

A short description of the error. Read more

The lower-level cause of this error, if any. Read more

© 2010 The Rust Project Developers
Licensed under the Apache License, Version 2.0 or the MIT license, at your option.
https://doc.rust-lang.org/std/env/enum.VarError.html

在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号

意见反馈
返回顶部