pub trait FixedSize: ArrayType + Copy + Debug + Sized + Sealed + 'static + _arrow_rs_trait {
const SIZE: usize = _;
}Expand description
Subtrait for fixed-size types.
This exists to be used as trait bound where one or more of the supertraits of this trait are required, and to restrict certain implementations to fixed-size types.
This trait is sealed to prevent downstream implementations.
Provided Associated Constants§
Object Safety§
This trait is not object safe.