add From<&str> for Pubkey

This commit is contained in:
William Casarin
2023-06-28 21:30:02 +02:00
parent 9a3a01f405
commit 44fd75167e
2 changed files with 10 additions and 1 deletions

View File

@@ -15,6 +15,12 @@ impl From<String> for Pubkey {
}
}
impl From<&str> for Pubkey {
fn from(s: &str) -> Self {
Pubkey(s.to_owned())
}
}
impl From<Pubkey> for String {
fn from(pk: Pubkey) -> Self {
pk.0