because rkyv 's zero copy have restriction that it cannot deserialized into owned type, the only possible usage it think is at client-side, rkyv have limited compatible to serde serialize trait, we can check it out.
while at server-side, there's no limitation because the Dispatch trait does not limit how user process the buffer. it's up to user's choice
because rkyv 's zero copy have restriction that it cannot deserialized into owned type, the only possible usage it think is at client-side, rkyv have limited compatible to serde serialize trait, we can check it out.
while at server-side, there's no limitation because the Dispatch trait does not limit how user process the buffer. it's up to user's choice