[][src]Enum sorer::dataframe::Column

pub enum Column {
    Int(Vec<Option<i64>>),
    Bool(Vec<Option<bool>>),
    Float(Vec<Option<f64>>),
    String(Vec<Option<String>>),
}

Represents a column in the DataFrame

Variants

Int(Vec<Option<i64>>)

A Column consisting of either Ints or missing

Bool(Vec<Option<bool>>)

A Column consisting of either Bool or missing

Float(Vec<Option<f64>>)

A Column consisting of either Float or missing

String(Vec<Option<String>>)

A Column consisting of either String or missing

Trait Implementations

impl Clone for Column[src]

impl Debug for Column[src]

impl PartialEq<Column> for Column[src]

impl StructuralPartialEq for Column[src]

Auto Trait Implementations

impl RefUnwindSafe for Column

impl Send for Column

impl Sync for Column

impl Unpin for Column

impl UnwindSafe for Column

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> 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.

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