diff options
Diffstat (limited to 'src/who.rs')
| -rw-r--r-- | src/who.rs | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -33,9 +33,9 @@ impl From<&str> for Who { } } -impl Into<String> for Who { - fn into(self) -> String { - self.name +impl From<Who> for String { + fn from(val: Who) -> Self { + val.name } } |
