pub struct ArrayDataRow<T> { /* private fields */ }Expand description
A simple row type for building array views from raw headers and data.
Row labels are stored separately and referenced by index.
Trait Implementations§
Source§impl<T> ArrayViewItem<usize> for ArrayDataRow<T>
impl<T> ArrayViewItem<usize> for ArrayDataRow<T>
Source§fn to_column(&self, column: usize) -> String
fn to_column(&self, column: usize) -> String
Method returning a string representation of the item for the
specified column from type
H.Source§fn to_row(&self) -> String
fn to_row(&self) -> String
Method returning a string representation of the item for the row
header.
Source§impl<T: Clone> Clone for ArrayDataRow<T>
impl<T: Clone> Clone for ArrayDataRow<T>
Source§fn clone(&self) -> ArrayDataRow<T>
fn clone(&self) -> ArrayDataRow<T>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl<T> Freeze for ArrayDataRow<T>
impl<T> RefUnwindSafe for ArrayDataRow<T>where
T: RefUnwindSafe,
impl<T> Send for ArrayDataRow<T>where
T: Send,
impl<T> Sync for ArrayDataRow<T>where
T: Sync,
impl<T> Unpin for ArrayDataRow<T>where
T: Unpin,
impl<T> UnwindSafe for ArrayDataRow<T>where
T: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more