Struct indradb::PropertyPresenceEdgeQuery
source · pub struct PropertyPresenceEdgeQuery {
pub name: Identifier,
}Expand description
Gets edges with a property.
Fields§
§name: IdentifierThe name of the property.
Implementations§
source§impl PropertyPresenceEdgeQuery
impl PropertyPresenceEdgeQuery
sourcepub fn new<T: Into<Identifier>>(name: T) -> Self
pub fn new<T: Into<Identifier>>(name: T) -> Self
Creates a new edge query for getting edges with a property.
Arguments
name: The name of the property.
Trait Implementations§
source§impl Clone for PropertyPresenceEdgeQuery
impl Clone for PropertyPresenceEdgeQuery
source§fn clone(&self) -> PropertyPresenceEdgeQuery
fn clone(&self) -> PropertyPresenceEdgeQuery
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 Debug for PropertyPresenceEdgeQuery
impl Debug for PropertyPresenceEdgeQuery
source§impl EdgeQueryExt for PropertyPresenceEdgeQuery
impl EdgeQueryExt for PropertyPresenceEdgeQuery
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 Into<EdgeQuery> for PropertyPresenceEdgeQuery
impl Into<EdgeQuery> for PropertyPresenceEdgeQuery
source§impl PartialEq<PropertyPresenceEdgeQuery> for PropertyPresenceEdgeQuery
impl PartialEq<PropertyPresenceEdgeQuery> for PropertyPresenceEdgeQuery
source§fn eq(&self, other: &PropertyPresenceEdgeQuery) -> bool
fn eq(&self, other: &PropertyPresenceEdgeQuery) -> bool
This method tests for
self and other values to be equal, and is used
by ==.