Lines Matching refs:name
10 //! Despite having "env" in its name, **`env_logger`** can also be configured by
70 //! If the binary name contains hyphens, you will need to replace
81 //! in their name, although `cargo` continues to accept them.
102 //! The path is rooted in the name of the crate it was compiled for, so if
115 //! When providing the crate name or a module path, explicitly specifying the
149 //! * `trace` turns on all logging for the application, regardless of its name
150 //! * `TRACE` turns on all logging for the application, regardless of its name (same as previous)
300 /// The default name for the environment variable to read filters from.
303 /// The default name for the environment variable to read style preferences from.
324 name: Cow<'a, str>,
1059 fn new<E>(name: E) -> Self
1064 name: name.into(),
1069 fn new_with_default<E, V>(name: E, default: V) -> Self
1075 name: name.into(),
1081 env::var(&*self.name)