Struct parquet::record::Row [−][src]
pub struct Row { /* fields omitted */ }Row represents a nested Parquet record.
Methods
impl Row[src]
impl RowTrait Implementations
impl Clone for Row[src]
impl Clone for Rowfn clone(&self) -> Row[src]
fn clone(&self) -> RowReturns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)1.0.0
[src]Performs copy-assignment from source. Read more
impl Debug for Row[src]
impl Debug for Rowfn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl PartialEq for Row[src]
impl PartialEq for Rowfn eq(&self, other: &Row) -> bool[src]
fn eq(&self, other: &Row) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &Row) -> bool[src]
fn ne(&self, other: &Row) -> boolThis method tests for !=.
impl RowAccessor for Row[src]
impl RowAccessor for Rowfn get_bool(&self, i: usize) -> Result<bool>[src]
fn get_bool(&self, i: usize) -> Result<bool>fn get_byte(&self, i: usize) -> Result<i8>[src]
fn get_byte(&self, i: usize) -> Result<i8>fn get_short(&self, i: usize) -> Result<i16>[src]
fn get_short(&self, i: usize) -> Result<i16>fn get_int(&self, i: usize) -> Result<i32>[src]
fn get_int(&self, i: usize) -> Result<i32>fn get_long(&self, i: usize) -> Result<i64>[src]
fn get_long(&self, i: usize) -> Result<i64>fn get_float(&self, i: usize) -> Result<f32>[src]
fn get_float(&self, i: usize) -> Result<f32>fn get_double(&self, i: usize) -> Result<f64>[src]
fn get_double(&self, i: usize) -> Result<f64>fn get_timestamp(&self, i: usize) -> Result<u64>[src]
fn get_timestamp(&self, i: usize) -> Result<u64>fn get_decimal(&self, i: usize) -> Result<&Decimal>[src]
fn get_decimal(&self, i: usize) -> Result<&Decimal>fn get_string(&self, i: usize) -> Result<&String>[src]
fn get_string(&self, i: usize) -> Result<&String>fn get_bytes(&self, i: usize) -> Result<&ByteArray>[src]
fn get_bytes(&self, i: usize) -> Result<&ByteArray>fn get_group(&self, i: usize) -> Result<&Row>[src]
fn get_group(&self, i: usize) -> Result<&Row>fn get_list(&self, i: usize) -> Result<&List>[src]
fn get_list(&self, i: usize) -> Result<&List>fn get_map(&self, i: usize) -> Result<&Map>[src]
fn get_map(&self, i: usize) -> Result<&Map>impl Display for Row[src]
impl Display for Row