-
Notifications
You must be signed in to change notification settings - Fork 1
Open
Description
|
33 | pub fn secrets_manager(&self) -> SecretsManager {
| ^^^^^ -------------- the same lifetime is hidden here
| |
| the lifetime is elided here
|
= help: the same lifetime is referred to in inconsistent ways, making the signature confusing
= note: `#[warn(mismatched_lifetime_syntaxes)]` on by default
help: use `'_` for type paths
|
33 | pub fn secrets_manager(&self) -> SecretsManager<'_> {
| ++++
warning: hiding a lifetime that's elided elsewhere is confusing
Warning: --> src/secrets/client.rs:38:28
|
38 | pub fn parameter_store(&self) -> ParameterStore {
| ^^^^^ -------------- the same lifetime is hidden here
| |
| the lifetime is elided here
|
= help: the same lifetime is referred to in inconsistent ways, making the signature confusing
help: use `'_` for type paths
|
38 | pub fn parameter_store(&self) -> ParameterStore<'_> {
| ++++
warning: `rotel-extension` (lib) generated 2 warnings
Finished `release` profile [optimized] target(s) in 7m 47s
Metadata
Metadata
Assignees
Labels
No labels