pub trait FixedSize: Value + PartialEq {
const SIZE: u16;
const INVALID: Self;
}Expand description
This trait marks points with a fixed size. All non-string values are actually fixed size.
Required Associated Constants§
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.