pub trait PlatformLimitDeserializableFromVersionedStructure {
// Required method
fn versioned_limit_deserialize(
data: &[u8],
platform_version: &PlatformVersion,
) -> Result<Self, ProtocolError>
where Self: Sized;
}Required Methods§
fn versioned_limit_deserialize(
data: &[u8],
platform_version: &PlatformVersion,
) -> Result<Self, ProtocolError>where
Self: Sized,
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".