pub trait ReflectedArray: Reflected {
// Required methods
fn element() -> Type;
fn length() -> usize;
}Expand description
A trait representing a reflected array. Supports operations specific to arrays
Required Methods§
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.