[][src]Struct parquet::schema::types::ColumnPath

pub struct ColumnPath { /* fields omitted */ }

Represents a path in a nested schema

Methods

impl ColumnPath
[src]

Creates new column path from vector of field names.

Returns string representation of this column path.

use parquet::schema::types::ColumnPath;

let path = ColumnPath::new(vec!["a".to_string(), "b".to_string(), "c".to_string()]);
assert_eq!(&path.string(), "a.b.c");

Trait Implementations

impl PartialEq<ColumnPath> for ColumnPath
[src]

impl From<Vec<String>> for ColumnPath
[src]

impl<'a> From<&'a str> for ColumnPath
[src]

impl From<String> for ColumnPath
[src]

impl AsRef<[String]> for ColumnPath
[src]

impl Clone for ColumnPath
[src]

Performs copy-assignment from source. Read more

impl Eq for ColumnPath
[src]

impl Display for ColumnPath
[src]

impl Debug for ColumnPath
[src]

impl Hash for ColumnPath
[src]

Feeds a slice of this type into the given [Hasher]. Read more

Auto Trait Implementations

impl Send for ColumnPath

impl Sync for ColumnPath

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

impl<T> From for T
[src]

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<E> SpecializationError for E
[src]

impl<T> Erased for T
[src]

impl<T> Send for T where
    T: ?Sized
[src]

impl<T> Sync for T where
    T: ?Sized
[src]

impl<T> Erased for T

impl<T, U> TryInto for T where
    U: TryFrom<T>,