pub type ProxyConvertOutFn = unsafe fn(target_ptr: PtrConst, proxy_ptr: PtrUninit) -> Result<PtrMut, String>;Expand description
Function type for proxy serialization: converts FROM target type INTO proxy type.
ยงSafety
target_ptrmust point to a valid, initialized value of the target typeproxy_ptrmust point to uninitialized memory suitable for the proxy type
On success, returns Ok(PtrMut) pointing to the initialized proxy value.
On failure, returns Err(String) with an error message.