pub trait FixedSize:
ArrayType<Self>
+ Copy
+ Debug
+ PartialEq
+ 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§
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.