[][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]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl PartialEq<Optype> for Optype[src]

#[must_use] fn ne(&self, other: &Rhs) -> bool1.0.0[src]

This method tests for !=.

impl Copy for Optype[src]

impl Debug for Optype[src]

impl Serialize for Optype[src]

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

Auto Trait Implementations

impl Sync for Optype

impl Send for Optype

impl Unpin for Optype

impl RefUnwindSafe for Optype

impl UnwindSafe for Optype

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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

impl<T, U> Into<U> for T where
    U: From<T>, 
[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<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<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> Erased for T

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

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