Struct indradb::PipePropertyPresenceEdgeQuery
source · pub struct PipePropertyPresenceEdgeQuery {
pub inner: Box<EdgeQuery>,
pub name: Identifier,
pub exists: bool,
}Expand description
Gets edges with a property.
Fields§
§inner: Box<EdgeQuery>The query to filter.
name: IdentifierThe name of the property.
exists: boolWhether we should look for property presence or lack thereof.
Implementations§
Trait Implementations§
source§impl Clone for PipePropertyPresenceEdgeQuery
impl Clone for PipePropertyPresenceEdgeQuery
source§fn clone(&self) -> PipePropertyPresenceEdgeQuery
fn clone(&self) -> PipePropertyPresenceEdgeQuery
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl EdgeQueryExt for PipePropertyPresenceEdgeQuery
impl EdgeQueryExt for PipePropertyPresenceEdgeQuery
source§fn outbound(self) -> PipeVertexQuery
fn outbound(self) -> PipeVertexQuery
Gets the vertices associated with the outbound end of the edges.
source§fn inbound(self) -> PipeVertexQuery
fn inbound(self) -> PipeVertexQuery
Gets the vertices associated with the inbound end of the edges.
source§fn property<T: Into<Identifier>>(self, name: T) -> EdgePropertyQuery
fn property<T: Into<Identifier>>(self, name: T) -> EdgePropertyQuery
Gets a property associated with the edges. Read more
source§fn with_property<T: Into<Identifier>>(
self,
name: T
) -> PipePropertyPresenceEdgeQuery
fn with_property<T: Into<Identifier>>(
self,
name: T
) -> PipePropertyPresenceEdgeQuery
Gets edges with a property. Read more
source§fn without_property<T: Into<Identifier>>(
self,
name: T
) -> PipePropertyPresenceEdgeQuery
fn without_property<T: Into<Identifier>>(
self,
name: T
) -> PipePropertyPresenceEdgeQuery
Gets edges without a property. Read more
source§fn with_property_equal_to<T: Into<Identifier>>(
self,
name: T,
value: Value
) -> PipePropertyValueEdgeQuery
fn with_property_equal_to<T: Into<Identifier>>(
self,
name: T,
value: Value
) -> PipePropertyValueEdgeQuery
Gets edges with a property equal to a given value. Read more
source§fn with_property_not_equal_to<T: Into<Identifier>>(
self,
name: T,
value: Value
) -> PipePropertyValueEdgeQuery
fn with_property_not_equal_to<T: Into<Identifier>>(
self,
name: T,
value: Value
) -> PipePropertyValueEdgeQuery
Gets edges with a property not equal to a given value. Read more
source§impl PartialEq<PipePropertyPresenceEdgeQuery> for PipePropertyPresenceEdgeQuery
impl PartialEq<PipePropertyPresenceEdgeQuery> for PipePropertyPresenceEdgeQuery
source§fn eq(&self, other: &PipePropertyPresenceEdgeQuery) -> bool
fn eq(&self, other: &PipePropertyPresenceEdgeQuery) -> bool
This method tests for
self and other values to be equal, and is used
by ==.