alamb edited a comment on issue #983:
URL: https://github.com/apache/arrow-rs/issues/983#issuecomment-989132112
Instead of calling `c.1.to_string()` perhaps you could use something like
this (untested):
```rust
match c.1 {
Field::Float(f) => format!("{}", f), // or however else you wanted to
format floats
Feld::Double(f) => format!("{}", f), // or however else you wanted to
format floats
_ => c.1.to_string()
}
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]