pub enum EdgeQuery {
Specific(SpecificEdgeQuery),
Pipe(PipeEdgeQuery),
PropertyPresence(PropertyPresenceEdgeQuery),
PropertyValue(PropertyValueEdgeQuery),
PipePropertyPresence(PipePropertyPresenceEdgeQuery),
PipePropertyValue(PipePropertyValueEdgeQuery),
}
Expand description
A query for edges.
Generally you shouldn’t need to instantiate an EdgeQuery
directly, but
rather one of the edge query structs, and then call .into()
on it to
convert it to an EdgeQuery
.
Variants
Specific(SpecificEdgeQuery)
Pipe(PipeEdgeQuery)
PropertyPresence(PropertyPresenceEdgeQuery)
PropertyValue(PropertyValueEdgeQuery)
PipePropertyPresence(PipePropertyPresenceEdgeQuery)
PipePropertyValue(PipePropertyValueEdgeQuery)
Trait Implementations
sourceimpl Into<EdgeQuery> for PipeEdgeQuery
impl Into<EdgeQuery> for PipeEdgeQuery
sourceimpl Into<EdgeQuery> for PipePropertyPresenceEdgeQuery
impl Into<EdgeQuery> for PipePropertyPresenceEdgeQuery
sourceimpl Into<EdgeQuery> for PipePropertyValueEdgeQuery
impl Into<EdgeQuery> for PipePropertyValueEdgeQuery
sourceimpl Into<EdgeQuery> for PropertyPresenceEdgeQuery
impl Into<EdgeQuery> for PropertyPresenceEdgeQuery
sourceimpl Into<EdgeQuery> for PropertyValueEdgeQuery
impl Into<EdgeQuery> for PropertyValueEdgeQuery
sourceimpl Into<EdgeQuery> for SpecificEdgeQuery
impl Into<EdgeQuery> for SpecificEdgeQuery
impl Eq for EdgeQuery
impl StructuralEq for EdgeQuery
impl StructuralPartialEq for EdgeQuery
Auto Trait Implementations
impl RefUnwindSafe for EdgeQuery
impl Send for EdgeQuery
impl Sync for EdgeQuery
impl Unpin for EdgeQuery
impl UnwindSafe for EdgeQuery
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