[][src]Struct cdrs::frame::frame_result::CUdt

pub struct CUdt {
    pub ks: CString,
    pub udt_name: CString,
    pub descriptions: Vec<(CString, ColTypeOption)>,
}

User defined type. Read more...

Fields

ks: CString

Keyspace name.

udt_name: CString

UDT name

descriptions: Vec<(CString, ColTypeOption)>

List of pairs (name, type) where name is field name and type is type of field.

Trait Implementations

impl Clone for CUdt[src]

impl Debug for CUdt[src]

impl FromCursor for CUdt[src]

Auto Trait Implementations

impl RefUnwindSafe for CUdt

impl Send for CUdt

impl Sync for CUdt

impl Unpin for CUdt

impl UnwindSafe for CUdt

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.