| 301 | /* FromValue / IntoValue */ |
| 302 | |
| 303 | pub trait FromValue: Sized { |
| 304 | fn from_handle(h: u32) -> Result<Self>; |
| 305 | } |
| 306 | |
| 307 | pub trait IntoValue { |
| 308 | fn into_handle(self) -> Result<Handle>; |
nothing calls this directly
no outgoing calls
no test coverage detected