pub trait SerializeRaw { // Required method unsafe fn serialize_raw(&self, curr: *mut u8) -> *mut u8; }
Serialize the value directly to raw memory.
This function is unsafe because it dereferences raw pointers. The caller must ensure that curr points to a valid, properly aligned, and writable buffer with sufficient capacity.
curr