Trait rerun::external::re_data_store::ArrayExt

source ·
pub trait ArrayExt: Array {
    // Required method
    fn get_child_length(&self, child_nr: usize) -> usize;
}

Required Methods§

source

fn get_child_length(&self, child_nr: usize) -> usize

Returns the length of the child array at the given index.

  • Panics if self is not a ListArray<i32>.
  • Panics if child_nr is out of bounds.

Implementors§

source§

impl ArrayExt for dyn Array