Skip to content

Commit e3aa457

Browse files
authored
Merge pull request #50 from randomairborne/patch-1
Fix #47
2 parents d3ef5fa + edcaa2d commit e3aa457

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

envconfig_derive/src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,14 +70,14 @@ fn impl_envconfig_for_struct(
7070
let config = Self {
7171
#(#field_assigns_env,)*
7272
};
73-
Ok(config)
73+
::core::result::Result::Ok(config)
7474
}
7575

7676
fn init_from_hashmap(hashmap: &::std::collections::HashMap<String, String>) -> ::std::result::Result<Self, ::envconfig::Error> {
7777
let config = Self {
7878
#(#field_assigns_hashmap,)*
7979
};
80-
Ok(config)
80+
::core::result::Result::Ok(config)
8181
}
8282

8383
#[deprecated(since="0.10.0", note="Please use `::init_from_env` instead")]

0 commit comments

Comments
 (0)