Enum cassandra_protocol::frame::frame_result::ColTypeOptionValue [−][src]
pub enum ColTypeOptionValue {
CString(String),
ColType(ColType),
CSet(Box<ColTypeOption>),
CList(Box<ColTypeOption>),
UdtType(CUdt),
TupleType(CTuple),
CMap(Box<ColTypeOption>, Box<ColTypeOption>),
}
Expand description
Enum that represents all possible types of value
of ColTypeOption
.
Variants
CString(String)
Tuple Fields
0: String
ColType(ColType)
Tuple Fields
0: ColType
CSet(Box<ColTypeOption>)
Tuple Fields
0: Box<ColTypeOption>
CList(Box<ColTypeOption>)
Tuple Fields
0: Box<ColTypeOption>
UdtType(CUdt)
Tuple Fields
0: CUdt
TupleType(CTuple)
Tuple Fields
0: CTuple
CMap(Box<ColTypeOption>, Box<ColTypeOption>)
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
This method returns an ordering between self
and other
values if one exists. Read more
This method tests less than (for self
and other
) and is used by the <
operator. Read more
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
This method tests greater than (for self
and other
) and is used by the >
operator. Read more
Auto Trait Implementations
impl RefUnwindSafe for ColTypeOptionValue
impl Send for ColTypeOptionValue
impl Sync for ColTypeOptionValue
impl Unpin for ColTypeOptionValue
impl UnwindSafe for ColTypeOptionValue
Blanket Implementations
Mutably borrows from an owned value. Read more