Skip to content

Commit

Permalink
Clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
reknih committed Oct 1, 2024
1 parent 05f9593 commit d8bf39c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/types/strings.rs
Original file line number Diff line number Diff line change
Expand Up @@ -251,9 +251,9 @@ impl Serialize for ChunkedString {
}
}

impl Into<String> for ChunkedString {
fn into(self) -> String {
return self.to_string();
impl From<ChunkedString> for String {
fn from(value: ChunkedString) -> Self {
value.to_string()
}
}

Expand Down

0 comments on commit d8bf39c

Please sign in to comment.