pub trait PlatformDeserializable {
// Required method
fn deserialize_from_bytes_no_limit(
data: &[u8],
) -> Result<Self, ProtocolError>
where Self: Sized;
// Provided method
fn deserialize_from_bytes(data: &[u8]) -> Result<Self, ProtocolError>
where Self: Sized { ... }
}