Struct mule::Columns[][src]

pub struct Columns<T: Typer> {
    pub columns: Vec<Column<T>>,
}

Fields

columns: Vec<Column<T>>

Implementations

impl<T: Typer> Columns<T>[src]

pub fn new(columns: usize, rows: usize) -> Columns<T>[src]

impl<T: Typer> Columns<T>[src]

pub async fn parse(
    file_path: impl AsRef<Path>,
    schema: &Schema<T>,
    parsing_options: &LineParsingOptions,
    skip_first_line: bool,
    typer: &T
) -> Result<Columns<T>>
[src]

Trait Implementations

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

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

impl<T: Default + Typer> Default for Columns<T>[src]

impl<T: PartialEq + Typer> PartialEq<Columns<T>> for Columns<T>[src]

impl<T: Typer> StructuralPartialEq for Columns<T>[src]

Auto Trait Implementations

impl<T> RefUnwindSafe for Columns<T> where
    <T as Typer>::DatasetValue: RefUnwindSafe

impl<T> Send for Columns<T>

impl<T> Sync for Columns<T>

impl<T> Unpin for Columns<T> where
    <T as Typer>::DatasetValue: Unpin

impl<T> UnwindSafe for Columns<T> where
    <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.