pub struct RowLabeled {
pub labels: RowNames,
pub values: Row,
}Expand description
Row with column labels.
Fields§
§labels: RowNamesColumn names
values: RowValues aligned with labels
Implementations§
Trait Implementations§
Source§impl Clone for RowLabeled
impl Clone for RowLabeled
Source§fn clone(&self) -> RowLabeled
fn clone(&self) -> RowLabeled
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 moreSource§impl Debug for RowLabeled
impl Debug for RowLabeled
Source§impl<'a> From<&'a RowLabeled> for &'a Row
impl<'a> From<&'a RowLabeled> for &'a Row
Source§fn from(value: &'a RowLabeled) -> Self
fn from(value: &'a RowLabeled) -> Self
Converts to this type from the input type.
Source§impl From<RowLabeled> for Row
impl From<RowLabeled> for Row
Source§fn from(value: RowLabeled) -> Self
fn from(value: RowLabeled) -> Self
Converts to this type from the input type.
Source§impl From<RowLabeled> for QueryResult
impl From<RowLabeled> for QueryResult
Source§fn from(value: RowLabeled) -> Self
fn from(value: RowLabeled) -> Self
Converts to this type from the input type.
Source§impl<'s> IntoIterator for &'s RowLabeled
impl<'s> IntoIterator for &'s RowLabeled
Source§impl<'s> IntoIterator for &'s mut RowLabeled
impl<'s> IntoIterator for &'s mut RowLabeled
Auto Trait Implementations§
impl Freeze for RowLabeled
impl RefUnwindSafe for RowLabeled
impl Send for RowLabeled
impl Sync for RowLabeled
impl Unpin for RowLabeled
impl UnwindSafe for RowLabeled
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