Struct cql3_parser::common::DataType
source · [−]pub struct DataType {
pub name: DataTypeName,
pub definition: Vec<DataTypeName>,
}Expand description
the definition of a data type
Fields
name: DataTypeNamethe name of the data type.
definition: Vec<DataTypeName>the definition of the data type. Normally this is empty but may contain data types that
comprise the named type. (e.g. FROZEN<foo> will have foo in the definition)
Trait Implementations
impl StructuralPartialEq for DataType
Auto Trait Implementations
impl RefUnwindSafe for DataType
impl Send for DataType
impl Sync for DataType
impl Unpin for DataType
impl UnwindSafe for DataType
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more