chore (backend-rs): impl From<Acct> for String
This commit is contained in:
parent
8f8d62aa58
commit
aa266d91e0
1 changed files with 3 additions and 3 deletions
|
@ -42,9 +42,9 @@ impl fmt::Display for Acct {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl Into<String> for Acct {
|
impl From<Acct> for String {
|
||||||
fn into(self) -> String {
|
fn from(value: Acct) -> Self {
|
||||||
self.to_string()
|
value.to_string()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue