[][src]Enum nebula_graph_fbthrift_graph::types::ColumnValue

pub enum ColumnValue {
    bool_val(bool),
    integer(i64),
    id(IdType),
    single_precision(f32),
    double_precision(f64),
    str(Vec<u8>),
    timestamp(Timestamp),
    year(Year),
    month(YearMonth),
    date(Date),
    datetime(DateTime),
    path(Path),
    UnknownField(i32),
}

Variants

bool_val(bool)
integer(i64)
id(IdType)
single_precision(f32)
double_precision(f64)
str(Vec<u8>)
timestamp(Timestamp)
year(Year)
month(YearMonth)
date(Date)
datetime(DateTime)
path(Path)
UnknownField(i32)

Trait Implementations

impl Clone for ColumnValue[src]

impl Debug for ColumnValue[src]

impl Default for ColumnValue[src]

impl<P> Deserialize<P> for ColumnValue where
    P: ProtocolReader
[src]

impl GetTType for ColumnValue[src]

impl PartialEq<ColumnValue> for ColumnValue[src]

impl<P> Serialize<P> for ColumnValue where
    P: ProtocolWriter
[src]

impl StructuralPartialEq for ColumnValue[src]

Auto Trait Implementations

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.