Enum smartnoise_validator::base::Vector1DNull[][src]

pub enum Vector1DNull {
    Bool(Vec<Option<bool>>),
    Int(Vec<Option<Integer>>),
    Float(Vec<Option<Float>>),
    Str(Vec<Option<String>>),
}

Variants

Bool(Vec<Option<bool>>)
Int(Vec<Option<Integer>>)
Float(Vec<Option<Float>>)
Str(Vec<Option<String>>)

Implementations

impl Vector1DNull[src]

pub fn float(&self) -> Result<&Vec<Option<Float>>>[src]

Retrieve the f64 vec, assuming the data type of the ArrayND is f64

pub fn int(&self) -> Result<&Vec<Option<Integer>>>[src]

Retrieve the i64 vec, assuming the data type of the ArrayND is i64

Trait Implementations

impl Clone for Vector1DNull[src]

impl Debug for Vector1DNull[src]

Auto Trait Implementations

impl RefUnwindSafe for Vector1DNull

impl Send for Vector1DNull

impl Sync for Vector1DNull

impl Unpin for Vector1DNull

impl UnwindSafe for Vector1DNull

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