Trait narrow::FixedSize

source ·
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§

source

const SIZE: usize = _

The fixed-size of this type in bytes.

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl FixedSize for f32

source§

impl FixedSize for f64

source§

impl FixedSize for i8

source§

impl FixedSize for i16

source§

impl FixedSize for i32

source§

impl FixedSize for i64

source§

impl FixedSize for i128

source§

impl FixedSize for u8

source§

impl FixedSize for u16

source§

impl FixedSize for u32

source§

impl FixedSize for u64

Implementors§