IsArray

Trait IsArray 

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

Required Methods§

Source

fn is_array(&self) -> bool

Implementations on Foreign Types§

Source§

impl IsArray for &str

Source§

fn is_array(&self) -> bool

Source§

impl IsArray for ()

Source§

fn is_array(&self) -> bool

Source§

impl<T> IsArray for &[T]

Source§

fn is_array(&self) -> bool

Source§

impl<T> IsArray for Vec<T>

Source§

fn is_array(&self) -> bool

Implementors§

Source§

impl<F> IsArray for F
where F: Fn(),