[][src]Struct amadeus_parquet::ParquetDirectory

pub struct ParquetDirectory<D> { /* fields omitted */ }

Implementations

impl<D> ParquetDirectory<D>[src]

pub fn new(directory: D) -> Self[src]

Trait Implementations

impl<'de, D> Deserialize<'de> for ParquetDirectory<D> where
    D: Deserialize<'de>, 
[src]

impl<D> Directory for ParquetDirectory<D> where
    D: Directory,
    D::Partition: Debug
[src]

impl<D> File for ParquetDirectory<D> where
    D: Directory,
    D::Partition: Debug
[src]

type Partition = D::Partition

type Error = D::Error

impl<D> Serialize for ParquetDirectory<D> where
    D: Serialize
[src]

Auto Trait Implementations

impl<D> RefUnwindSafe for ParquetDirectory<D> where
    D: RefUnwindSafe

impl<D> Send for ParquetDirectory<D> where
    D: Send

impl<D> Sync for ParquetDirectory<D> where
    D: Sync

impl<D> Unpin for ParquetDirectory<D> where
    D: Unpin

impl<D> UnwindSafe for ParquetDirectory<D> where
    D: UnwindSafe

Blanket Implementations

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

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

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

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<A, B> Downcast<A> for B where
    A: DowncastFrom<B>, 
[src]

impl<T> From<T> for T[src]

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

impl<T> ProcessSend for T where
    T: Send + Serialize + for<'de> Deserialize<'de> + ?Sized
[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,