Home
last modified time | relevance | path

Searched defs:VarError (Results 1 – 4 of 4) sorted by relevance

/third_party/rust/rust/tests/ui/issues/
Dissue-36023.rs17 fn env_var(s: &str) -> Result<String, VarError> { in env_var() argument
21 pub enum VarError { enum
/third_party/rust/rust/library/std/src/
Denv.rs227 pub fn var<K: AsRef<OsStr>>(key: K) -> Result<String, VarError> { in var() argument
231 fn _var(key: &OsStr) -> Result<String, VarError> { in _var() argument
275 pub enum VarError { enum
289 impl fmt::Display for VarError { implementation
301 impl Error for VarError { implementation
/third_party/rust/crates/bindgen/bindgen/
Dlib.rs1163 ) -> Result<String, std::env::VarError> { in env_var()
/third_party/rust/rust/library/proc_macro/src/
Dlib.rs1473 pub fn var<K: AsRef<OsStr> + AsRef<str>>(key: K) -> Result<String, VarError> { in var() argument