pub enum QueryStructPropertyType {
Scalar(QueryScalarType),
Array {
item_type: ArrayItemType,
},
Object {
properties: Vec<QueryStructProperty>,
},
}Variants§
Scalar(QueryScalarType)
Array
Fields
§
item_type: ArrayItemTypeObject
Fields
§
properties: Vec<QueryStructProperty>Trait Implementations§
Source§impl Clone for QueryStructPropertyType
impl Clone for QueryStructPropertyType
Source§fn clone(&self) -> QueryStructPropertyType
fn clone(&self) -> QueryStructPropertyType
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 QueryStructPropertyType
impl Debug for QueryStructPropertyType
Source§impl PartialEq for QueryStructPropertyType
impl PartialEq for QueryStructPropertyType
Source§impl Serialize for QueryStructPropertyType
impl Serialize for QueryStructPropertyType
impl StructuralPartialEq for QueryStructPropertyType
Auto Trait Implementations§
impl Freeze for QueryStructPropertyType
impl RefUnwindSafe for QueryStructPropertyType
impl Send for QueryStructPropertyType
impl Sync for QueryStructPropertyType
impl Unpin for QueryStructPropertyType
impl UnsafeUnpin for QueryStructPropertyType
impl UnwindSafe for QueryStructPropertyType
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