(self)
| 518 | impl<T: serde::Serialize> TryIntoValue for T { |
| 519 | type Error = crate::ser::SerializationError; |
| 520 | fn try_into_value(self) -> Result<Value, Self::Error> { |
| 521 | crate::ser::to_value(self) |
| 522 | } |
| 523 | } |
| 524 | impl TryIntoValue for Value { |
| 525 | type Error = Infallible; |
no test coverage detected