pub trait PhysicalPType: NativePType {
type Physical: NativePType + Unsigned;
}Expand description
A trait that allows conversion from a PType to its physical representation (i.e., unsigned)
Required Associated Types§
Sourcetype Physical: NativePType + Unsigned
type Physical: NativePType + Unsigned
The physical type that corresponds to this native type.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".