pub trait ReflectArray: Reflect {
// Required methods
fn reflect_index(&self, index: usize) -> Option<&(dyn Reflect + 'static)>;
fn reflect_index_mut(
&mut self,
index: usize,
) -> Option<&mut (dyn Reflect + 'static)>;
fn reflect_len(&self) -> usize;
}
Expand description
Reflect
sub trait for working with slices.