Readme and clippy cleanups

This commit is contained in:
Ava Apples Affine 2023-05-28 23:22:49 +00:00
parent cbd52de91b
commit 8cc0202a7b
13 changed files with 159 additions and 197 deletions

View file

@ -56,9 +56,10 @@ impl fmt::Display for Traceback {
}
}
impl std::convert::Into<String> for Traceback {
fn into(self) -> String {
format!("{}", self)
impl std::convert::From<Traceback> for String {
fn from(arg: Traceback) -> Self {
format!("{}", arg)
}
}