Struct kudu::Row [] [src]

pub struct Row { /* fields omitted */ }

Methods

impl Row
[src]

TODO: unset/unset_by_name. Should zero out existing values so that equality can still be fast. TODO: remove varlen column bytes from data (right now it takes up 16 useless bytes) (is this as easy as changing them to 0 width in the Value trait?).

Trait Implementations

impl Clone for Row
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Row
[src]

Formats the value using the given formatter.

impl PartialEq for Row
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Eq for Row
[src]

impl PartialOrd for Row
[src]

Rows can be compared based on primary key column values. If the schemas do not match or if some of the primary key columns are not set, the ordering is not defined.

This method returns an ordering between self and other values if one exists. Read more

This method tests less than (for self and other) and is used by the < operator. Read more

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

This method tests greater than (for self and other) and is used by the > operator. Read more

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more