pub enum ColTypeOptionValue {
CString(CString),
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(CString)
ColType(ColType)
CSet(Box<ColTypeOption>)
CList(Box<ColTypeOption>)
UdtType(CUdt)
TupleType(CTuple)
CMap((Box<ColTypeOption>, Box<ColTypeOption>))
Trait Implementations§
Source§impl Clone for ColTypeOptionValue
impl Clone for ColTypeOptionValue
Source§fn clone(&self) -> ColTypeOptionValue
fn clone(&self) -> ColTypeOptionValue
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for ColTypeOptionValue
impl RefUnwindSafe for ColTypeOptionValue
impl Send for ColTypeOptionValue
impl Sync for ColTypeOptionValue
impl Unpin for ColTypeOptionValue
impl UnwindSafe for ColTypeOptionValue
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more