ArrayExt

Trait ArrayExt 

Source
pub trait ArrayExt {
    // Required method
    fn push_value<T: Into<Value>>(&mut self, value: T);
}

Required Methods§

Source

fn push_value<T: Into<Value>>(&mut self, value: T)

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.

Implementations on Foreign Types§

Source§

impl ArrayExt for Vec<Value>

Source§

fn push_value<T: Into<Value>>(&mut self, value: T)

Implementors§