pub enum VarError {
NotPresent,
NotUnicode(OsString),
}
The error type for operations interacting with environment variables.
Possibly returned from the env::var
function.
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.
Formats the value using the given formatter. Read more
This method tests for self
and other
values to be equal, and is used by ==
. Read more
This method tests for !=
.
Performs copy-assignment from source
. Read more
Formats the value using the given formatter. Read more
The lower-level cause of this error, if any. Read more