Enum indradb::VertexQuery
source · [−]pub enum VertexQuery {
Range(RangeVertexQuery),
Specific(SpecificVertexQuery),
Pipe(PipeVertexQuery),
PropertyPresence(PropertyPresenceVertexQuery),
PropertyValue(PropertyValueVertexQuery),
PipePropertyPresence(PipePropertyPresenceVertexQuery),
PipePropertyValue(PipePropertyValueVertexQuery),
}
Expand description
A query for vertices.
Generally you shouldn’t need to instantiate a VertexQuery
directly, but
rather one of the vertex query structs, and then call .into()
on it to
convert it to a VertexQuery
.
Variants
Range(RangeVertexQuery)
Specific(SpecificVertexQuery)
Pipe(PipeVertexQuery)
PropertyPresence(PropertyPresenceVertexQuery)
PropertyValue(PropertyValueVertexQuery)
PipePropertyPresence(PipePropertyPresenceVertexQuery)
PipePropertyValue(PipePropertyValueVertexQuery)
Trait Implementations
sourceimpl Clone for VertexQuery
impl Clone for VertexQuery
sourcefn clone(&self) -> VertexQuery
fn clone(&self) -> VertexQuery
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for VertexQuery
impl Debug for VertexQuery
sourceimpl Into<VertexQuery> for PipePropertyPresenceVertexQuery
impl Into<VertexQuery> for PipePropertyPresenceVertexQuery
sourcefn into(self) -> VertexQuery
fn into(self) -> VertexQuery
Converts this type into the (usually inferred) input type.
sourceimpl Into<VertexQuery> for PipePropertyValueVertexQuery
impl Into<VertexQuery> for PipePropertyValueVertexQuery
sourcefn into(self) -> VertexQuery
fn into(self) -> VertexQuery
Converts this type into the (usually inferred) input type.
sourceimpl Into<VertexQuery> for PipeVertexQuery
impl Into<VertexQuery> for PipeVertexQuery
sourcefn into(self) -> VertexQuery
fn into(self) -> VertexQuery
Converts this type into the (usually inferred) input type.
sourceimpl Into<VertexQuery> for PropertyPresenceVertexQuery
impl Into<VertexQuery> for PropertyPresenceVertexQuery
sourcefn into(self) -> VertexQuery
fn into(self) -> VertexQuery
Converts this type into the (usually inferred) input type.
sourceimpl Into<VertexQuery> for PropertyValueVertexQuery
impl Into<VertexQuery> for PropertyValueVertexQuery
sourcefn into(self) -> VertexQuery
fn into(self) -> VertexQuery
Converts this type into the (usually inferred) input type.
sourceimpl Into<VertexQuery> for RangeVertexQuery
impl Into<VertexQuery> for RangeVertexQuery
sourcefn into(self) -> VertexQuery
fn into(self) -> VertexQuery
Converts this type into the (usually inferred) input type.
sourceimpl Into<VertexQuery> for SpecificVertexQuery
impl Into<VertexQuery> for SpecificVertexQuery
sourcefn into(self) -> VertexQuery
fn into(self) -> VertexQuery
Converts this type into the (usually inferred) input type.
sourceimpl PartialEq<VertexQuery> for VertexQuery
impl PartialEq<VertexQuery> for VertexQuery
sourcefn eq(&self, other: &VertexQuery) -> bool
fn eq(&self, other: &VertexQuery) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &VertexQuery) -> bool
fn ne(&self, other: &VertexQuery) -> bool
This method tests for !=
.
impl Eq for VertexQuery
impl StructuralEq for VertexQuery
impl StructuralPartialEq for VertexQuery
Auto Trait Implementations
impl RefUnwindSafe for VertexQuery
impl Send for VertexQuery
impl Sync for VertexQuery
impl Unpin for VertexQuery
impl UnwindSafe for VertexQuery
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
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