We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 27a4ca9 + 5416cee commit 599228dCopy full SHA for 599228d
src/value/ser.rs
@@ -505,6 +505,10 @@ impl serde::Serializer for MapKeySerializer {
505
Ok(value.to_string())
506
}
507
508
+ fn serialize_i128(self, value: i128) -> Result<String> {
509
+ Ok(value.to_string())
510
+ }
511
+
512
fn serialize_u8(self, value: u8) -> Result<String> {
513
514
@@ -521,6 +525,10 @@ impl serde::Serializer for MapKeySerializer {
521
525
522
526
523
527
528
+ fn serialize_u128(self, value: u128) -> Result<String> {
529
530
531
524
532
fn serialize_f32(self, value: f32) -> Result<String> {
533
if value.is_finite() {
534
Ok(ryu::Buffer::new().format_finite(value).to_owned())
0 commit comments