pub enum PropertyTypeTerm {
Scalar(ScalarType),
List {
inner: Box<PropertyTypeTerm>,
not_null: bool,
},
Vector {
coord: VectorCoordType,
dimension: u32,
},
}Variants§
Trait Implementations§
Source§impl Clone for PropertyTypeTerm
impl Clone for PropertyTypeTerm
Source§fn clone(&self) -> PropertyTypeTerm
fn clone(&self) -> PropertyTypeTerm
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for PropertyTypeTerm
impl Debug for PropertyTypeTerm
Source§impl PartialEq for PropertyTypeTerm
impl PartialEq for PropertyTypeTerm
Source§fn eq(&self, other: &PropertyTypeTerm) -> bool
fn eq(&self, other: &PropertyTypeTerm) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for PropertyTypeTerm
Auto Trait Implementations§
impl Freeze for PropertyTypeTerm
impl RefUnwindSafe for PropertyTypeTerm
impl Send for PropertyTypeTerm
impl Sync for PropertyTypeTerm
impl Unpin for PropertyTypeTerm
impl UnsafeUnpin for PropertyTypeTerm
impl UnwindSafe for PropertyTypeTerm
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