Trait NBytes

Source
pub trait NBytes: Array {
    // Provided method
    fn nbytes(&self) -> usize { ... }
}

Provided Methods§

Source

fn nbytes(&self) -> usize

Total size of the array in bytes, including all children and buffers.

Implementors§

Source§

impl<T: Array + ?Sized> NBytes for T