pub trait PlatformLimitDeserializableFromVersionedStructureUntrusted {
// Required method
fn versioned_limit_deserialize_untrusted(
data: &[u8],
platform_version: &PlatformVersion,
) -> Result<Self, ProtocolError>
where Self: Sized;
}Expand description
Untrusted twin of PlatformLimitDeserializableFromVersionedStructureTrusted:
bytes from outside this node, see PlatformDeserializableUntrusted.
Required Methods§
fn versioned_limit_deserialize_untrusted(
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".