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 {
|
||||
fn into(self) -> String {
|
||||
self.to_string()
|
||||
impl From<Acct> for String {
|
||||
fn from(value: Acct) -> Self {
|
||||
value.to_string()
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue