Trait ArrayElement

Source
pub trait ArrayElement: Copy + 'static { }
Expand description

Marker trait for valid array element types.

Implemented for primitive types that can be stored in arrays. Combines type information with data type classification.

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.

Implementations on Foreign Types§

Source§

impl ArrayElement for f64

Implementors§