We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d3ef5fa + edcaa2d commit e3aa457Copy full SHA for e3aa457
envconfig_derive/src/lib.rs
@@ -70,14 +70,14 @@ fn impl_envconfig_for_struct(
70
let config = Self {
71
#(#field_assigns_env,)*
72
};
73
- Ok(config)
+ ::core::result::Result::Ok(config)
74
}
75
76
fn init_from_hashmap(hashmap: &::std::collections::HashMap<String, String>) -> ::std::result::Result<Self, ::envconfig::Error> {
77
78
#(#field_assigns_hashmap,)*
79
80
81
82
83
#[deprecated(since="0.10.0", note="Please use `::init_from_env` instead")]
0 commit comments