simd_json::prelude::derived

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

Implementors§

source§

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