pub enum QueryValue {
Element(ElementId),
Relation(RelationId),
Incidence(IncidenceRecord),
Subject(PropertySubject),
Property(PropertyValue),
Text(String),
Projection(ProjectionId),
}Expand description
Variants§
Element(ElementId)
Canonical element id.
Relation(RelationId)
Canonical relation id.
Incidence(IncidenceRecord)
Canonical incidence record.
Subject(PropertySubject)
Property subject.
Property(PropertyValue)
Typed property value.
Text(String)
Human-readable text value.
Projection(ProjectionId)
Projection id.
Trait Implementations§
Source§impl Clone for QueryValue
impl Clone for QueryValue
Source§fn clone(&self) -> QueryValue
fn clone(&self) -> QueryValue
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 QueryValue
impl Debug for QueryValue
Source§impl<'de> Deserialize<'de> for QueryValue
impl<'de> Deserialize<'de> for QueryValue
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for QueryValue
Source§impl PartialEq for QueryValue
impl PartialEq for QueryValue
Source§fn eq(&self, other: &QueryValue) -> bool
fn eq(&self, other: &QueryValue) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for QueryValue
impl Serialize for QueryValue
impl StructuralPartialEq for QueryValue
Auto Trait Implementations§
impl Freeze for QueryValue
impl RefUnwindSafe for QueryValue
impl Send for QueryValue
impl Sync for QueryValue
impl Unpin for QueryValue
impl UnsafeUnpin for QueryValue
impl UnwindSafe for QueryValue
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