pub trait PlatformLimitDeserializableFromVersionedStructure {
// Required method
fn versioned_limit_deserialize(
data: &[u8],
platform_version: &PlatformVersion,
) -> Result<Self, ProtocolError>
where Self: Sized;
}