chore: Fix lints errors
All checks were successful
Rust CI / Rust CI (pull_request) Successful in 1m15s

This commit is contained in:
Awiteb 2024-04-25 01:25:11 +03:00
parent cf5dca2111
commit b4b467bdfc
Signed by: awiteb
GPG key ID: 3F6B55640AA6682F
2 changed files with 11 additions and 10 deletions

View file

@ -44,10 +44,8 @@ impl RunCommand for Import {
{
let imported_passwords_len = match self.format {
Format::Lprs => {
let vaults = Vaults::try_reload(
self.path.to_path_buf(),
vault_manager.master_password.to_vec(),
)?;
let vaults =
Vaults::try_reload(self.path, vault_manager.master_password.to_vec())?;
let vaults_len = vaults.vaults.len();
vault_manager.vaults.extend(vaults.vaults);

View file

@ -187,11 +187,14 @@ impl Vaults<Plain> {
}
}
impl ToString for Format {
fn to_string(&self) -> String {
self.to_possible_value()
.expect("There is no skiped values")
.get_name()
.to_owned()
impl std::fmt::Display for Format {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
write!(
f,
"{}",
self.to_possible_value()
.expect("There is no skiped values")
.get_name()
)
}
}