pub type ProxyConvertOutFn = unsafe fn(PtrConst, PtrUninit) -> Result<PtrMut, String>;Available on crate feature
alloc only.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.