Returns the Rust representation of the provided instance
(self)
| 216 | |
| 217 | /// Returns the Rust representation of the provided instance |
| 218 | pub fn to_rust<T: Any>(self) -> errors::Result<T> |
| 219 | where |
| 220 | T: DeserializeOwned, |
| 221 | { |
| 222 | self.jvm.to_rust(self.instance) |
| 223 | } |
| 224 | |
| 225 | /// Returns the Rust representation of the provided instance, boxed |
| 226 | pub fn to_rust_boxed<T: Any>(self) -> errors::Result<Box<T>> |