Skip to main content

TypedArrayValue

Trait TypedArrayValue 

Source
pub trait TypedArrayValue {
    // Required method
    fn is_array(&self) -> bool;
}
Expand description

Type checks for array values on a value

Required Methods§

Source

fn is_array(&self) -> bool

returns true if the current value can be represented as an array

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§

Source§

impl<T> TypedArrayValue for T
where T: ValueAsArray,