Struct kudu::Schema
[−]
[src]
pub struct Schema { /* fields omitted */ }
Methods
impl Schema
[src]
fn columns(&self) -> &[Column]
fn column(&self, index: usize) -> Option<&Column>
fn column_by_name(&self, name: &str) -> Option<&Column>
fn column_index(&self, name: &str) -> Option<usize>
fn primary_key(&self) -> &[Column]
fn primary_key_projection(&self) -> Schema
fn row_size(&self) -> usize
fn has_nullable_columns(&self) -> bool
fn column_offsets(&self) -> &[usize]
fn new_row(&self) -> Row
fn ref_eq(&self, other: &Schema) -> bool
Trait Implementations
impl Clone for Schema
[src]
fn clone(&self) -> Schema
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0
Performs copy-assignment from source
. Read more
impl PartialEq for Schema
[src]
fn eq(&self, other: &Schema) -> bool
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, other: &Rhs) -> bool
1.0.0
This method tests for !=
.