(&self, s: S)
| 1137 | #[cfg(feature = "serde")] |
| 1138 | impl serde::Serialize for SerializeExceptionOwned<'_> { |
| 1139 | fn serialize<S: serde::Serializer>(&self, s: S) -> Result<S::Ok, S::Error> { |
| 1140 | let Self { vm, exc } = self; |
| 1141 | SerializeException::new(vm, exc).serialize(s) |
| 1142 | } |
| 1143 | } |
| 1144 | |
| 1145 | #[cfg(feature = "serde")] |
nothing calls this directly
no test coverage detected