pub trait TypedArrayValue {
// Required method
fn is_array(&self) -> bool;
}Expand description
Type checks for array values on a value
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".