[][src]Enum bigml::resource::source::Optype

pub enum Optype {
    DateTime,
    Numeric,
    Categorical,
    Text,
    Items,
}

The type of a data field.

Variants

DateTime

Treat this as a date value.

Numeric

Treat this as a numeric value.

Categorical

Threat this as a category with multiple possible values, but not arbitrary strings.

Text

Treat this as text. This uses different machine learning algorithms than Categorical.

Items

Treat this as a list of muliple items separated by an auto-detected separator.

Trait Implementations

impl Updatable for Optype[src]

type Update = Self

The type of the data used to update this value.

impl Clone for Optype[src]

impl Copy for Optype[src]

impl PartialEq<Optype> for Optype[src]

impl Debug for Optype[src]

impl StructuralPartialEq for Optype[src]

impl Serialize for Optype[src]

impl<'de> Deserialize<'de> for Optype[src]

Auto Trait Implementations

impl Send for Optype

impl Sync for Optype

impl Unpin for Optype

impl UnwindSafe for Optype

impl RefUnwindSafe for Optype

Blanket Implementations

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 = !

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<T> Borrow<T> for T where
    T: ?Sized
[src]

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

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

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

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

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