pub trait FromU32Lossywhere
Self: Sealed,{
// Required method
fn from_u32_lossy(value: u32) -> Self;
}
Expand description
Trait for number types that can be converted from u32
, potentially lossily
Required Methods§
Sourcefn from_u32_lossy(value: u32) -> Self
fn from_u32_lossy(value: u32) -> Self
Convert from a u32
value
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.