pub struct Row<'a> { /* private fields */ }Expand description
A comparable representation of a row.
See the module level documentation for more details.
Two Row can only be compared if they both belong to Rows
returned by calls to RowConverter::convert_columns on the same
RowConverter. If different RowConverters are used, any
ordering established by comparing the Row is arbitrary.
Implementations§
Trait Implementations§
source§impl<'a> Ord for Row<'a>
impl<'a> Ord for Row<'a>
source§impl<'a> PartialEq<Row<'a>> for Row<'a>
impl<'a> PartialEq<Row<'a>> for Row<'a>
source§impl<'a> PartialOrd<Row<'a>> for Row<'a>
impl<'a> PartialOrd<Row<'a>> for Row<'a>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self and other) and is used by the <=
operator. Read more