pub trait TryFromPlatformVersioned<T>: Sized {
type Error;
// Required method
fn try_from_platform_versioned(
value: T,
platform_version: &PlatformVersion,
) -> Result<Self, Self::Error>;
}Required Associated Types§
Required Methods§
Sourcefn try_from_platform_versioned(
value: T,
platform_version: &PlatformVersion,
) -> Result<Self, Self::Error>
fn try_from_platform_versioned( value: T, platform_version: &PlatformVersion, ) -> Result<Self, Self::Error>
Performs the conversion.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.