Struct mule::Dataset[][src]

pub struct Dataset<T: Typer> {
    pub header: Option<Header>,
    pub schema: Schema<T>,
    pub columns: Columns<T>,
}

Strongly-typed columnar dataset

Fields

header: Option<Header>schema: Schema<T>columns: Columns<T>

Implementations

impl<T: Typer + Send + Sync> Dataset<T>[src]

pub async fn read_file(
    file_path: impl AsRef<Path>,
    options: ReadingOptions,
    typer: &T
) -> Result<Dataset<T>>
[src]

Trait Implementations

impl<T: Clone + Typer> Clone for Dataset<T>[src]

impl<T: Debug + Typer> Debug for Dataset<T>[src]

Auto Trait Implementations

impl<T> RefUnwindSafe for Dataset<T> where
    <T as Typer>::ColumnType: RefUnwindSafe,
    <T as Typer>::DatasetValue: RefUnwindSafe

impl<T> Send for Dataset<T>

impl<T> Sync for Dataset<T>

impl<T> Unpin for Dataset<T> where
    <T as Typer>::ColumnType: Unpin,
    <T as Typer>::DatasetValue: Unpin

impl<T> UnwindSafe for Dataset<T> where
    <T as Typer>::ColumnType: UnwindSafe,
    <T as Typer>::DatasetValue: 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> From<T> for T[src]

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

impl<T> Pointable for T

type Init = T

The type for initializers.

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

type Owned = T

The resulting type after obtaining ownership.

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.