Details
-
Task
-
Resolution: Done
-
Major - P3
-
None
-
None
-
None
-
None
-
2
-
Iteration Echidna
Description
bson crate needs decimal128 to have a Display Trait. This should mostly be a wrapper around the to_string method. If there are no hiccups along the way, the below should work:
impl fmt::Display for Decimal128 { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "({}, {})", self.to_string())
}
}