You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Tested on Ubuntu 20.04, Linux Mint 20.2 and Ubuntu 22.04, each with stock rustc:
error[E0432]: unresolved import `clap::Clap`
error[E0277]: the trait bound `VaultClient:LoginClient` is not satisfied
--> /home/bkaindl/.cargo/registry/src/github.com-1ecc6299db9ec823/vaultssh-0.1.1/src/main.rs:275:45
|
275 | ifletErr(e) = crate::login::login(&mut client, config, console).await{
| ------------------- ^^^^^^^^^^^ the trait `LoginClient` is not implemented for `VaultClient`
| |
| required by a bound introduced by this call
145 | pub struct Opts{
| --------------- function or associated item `parse` not found for this
...
184 | let opts:Opts = Opts::parse();
| ^^^^^ function or associated item not found in `Opts`
|
= help: items from traits can only be used if the trait is implemented and in scope
= note: the following traits define an item `parse`, perhaps you need to implement one of them:
candidate #1: `time::parsing::parsable::sealed::Sealed`
candidate #2: `Parser`
candidate #3: `TypedValueParser`
Some errors have detailed explanations:E0277,E0432,E0599.For more information about an error, try `rustc --explain E0277`.
The text was updated successfully, but these errors were encountered:
Tested on Ubuntu 20.04, Linux Mint 20.2 and Ubuntu 22.04, each with stock rustc:
The text was updated successfully, but these errors were encountered: