Enum sgx_tstd::env::VarError [−][src]
pub enum VarError { NotPresent, NotUnicode(OsString), }
The error type for operations interacting with environment variables.
Possibly returned from the [env::var
] function.
Variants
NotPresent
The specified environment variable was not present in the current process's environment.
NotUnicode(OsString)
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]
impl Debug for VarError
fn fmt(&self, f: &mut Formatter) -> Result
[src]
fn fmt(&self, f: &mut Formatter) -> Result
Formats the value using the given formatter. Read more
impl PartialEq for VarError
[src]
impl PartialEq for VarError
fn eq(&self, other: &VarError) -> bool
[src]
fn eq(&self, other: &VarError) -> bool
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, other: &VarError) -> bool
[src]
fn ne(&self, other: &VarError) -> bool
This method tests for !=
.
impl Eq for VarError
[src]
impl Eq for VarError
impl Clone for VarError
[src]
impl Clone for VarError
fn clone(&self) -> VarError
[src]
fn clone(&self) -> VarError
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
fn clone_from(&mut self, source: &Self)
1.0.0
[src]Performs copy-assignment from source
. Read more
impl Display for VarError
[src]
impl Display for VarError
fn fmt(&self, f: &mut Formatter) -> Result
[src]
fn fmt(&self, f: &mut Formatter) -> Result
Formats the value using the given formatter. Read more
impl Error for VarError
[src]
impl Error for VarError