Trait simd_json::prelude::TypedArrayValue

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

Prelude to include needed traits 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

Implementors§

source§

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