mirror of
https://github.com/meilisearch/MeiliSearch
synced 2025-07-04 20:37:15 +02:00
Replace .toString to String::new()
This commit is contained in:
parent
bc6d86c8ce
commit
690b8e0dd0
1 changed files with 1 additions and 1 deletions
|
@ -88,7 +88,7 @@ impl ser::Serializer for ConvertToString {
|
|||
}
|
||||
|
||||
fn serialize_unit(self) -> Result<Self::Ok, Self::Error> {
|
||||
Ok("".to_string())
|
||||
Ok(String::new())
|
||||
}
|
||||
|
||||
fn serialize_unit_struct(self, _name: &'static str) -> Result<Self::Ok, Self::Error> {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue