Struct indradb::PropertyPresenceVertexQuery
source · [−]pub struct PropertyPresenceVertexQuery {
pub name: Identifier,
}
Expand description
Gets vertices with a property.
Fields
name: Identifier
The name of the property.
Implementations
sourceimpl PropertyPresenceVertexQuery
impl PropertyPresenceVertexQuery
sourcepub fn new<T: Into<Identifier>>(name: T) -> Self
pub fn new<T: Into<Identifier>>(name: T) -> Self
Creates a new vertex query for getting vertices with a property.
Arguments
name
: The name of the property.
Trait Implementations
sourceimpl Clone for PropertyPresenceVertexQuery
impl Clone for PropertyPresenceVertexQuery
sourcefn clone(&self) -> PropertyPresenceVertexQuery
fn clone(&self) -> PropertyPresenceVertexQuery
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 PropertyPresenceVertexQuery
impl Debug for PropertyPresenceVertexQuery
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 PartialEq<PropertyPresenceVertexQuery> for PropertyPresenceVertexQuery
impl PartialEq<PropertyPresenceVertexQuery> for PropertyPresenceVertexQuery
sourcefn eq(&self, other: &PropertyPresenceVertexQuery) -> bool
fn eq(&self, other: &PropertyPresenceVertexQuery) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &PropertyPresenceVertexQuery) -> bool
fn ne(&self, other: &PropertyPresenceVertexQuery) -> bool
This method tests for !=
.
sourceimpl VertexQueryExt for PropertyPresenceVertexQuery
impl VertexQueryExt for PropertyPresenceVertexQuery
sourcefn outbound(self) -> PipeEdgeQuery
fn outbound(self) -> PipeEdgeQuery
Gets the outbound edges associated with the vertices.
sourcefn inbound(self) -> PipeEdgeQuery
fn inbound(self) -> PipeEdgeQuery
Gets the inbound edges associated with the vertices.
sourcefn property<T: Into<Identifier>>(self, name: T) -> VertexPropertyQuery
fn property<T: Into<Identifier>>(self, name: T) -> VertexPropertyQuery
Gets a property associated with the vertices. Read more
sourcefn with_property<T: Into<Identifier>>(
self,
name: T
) -> PipePropertyPresenceVertexQuery
fn with_property<T: Into<Identifier>>(
self,
name: T
) -> PipePropertyPresenceVertexQuery
Gets vertices with a property. Read more
sourcefn without_property<T: Into<Identifier>>(
self,
name: T
) -> PipePropertyPresenceVertexQuery
fn without_property<T: Into<Identifier>>(
self,
name: T
) -> PipePropertyPresenceVertexQuery
Gets vertices without a property. Read more
sourcefn with_property_equal_to<T: Into<Identifier>>(
self,
name: T,
value: Value
) -> PipePropertyValueVertexQuery
fn with_property_equal_to<T: Into<Identifier>>(
self,
name: T,
value: Value
) -> PipePropertyValueVertexQuery
Gets vertices with a property equal to a given value. Read more
sourcefn with_property_not_equal_to<T: Into<Identifier>>(
self,
name: T,
value: Value
) -> PipePropertyValueVertexQuery
fn with_property_not_equal_to<T: Into<Identifier>>(
self,
name: T,
value: Value
) -> PipePropertyValueVertexQuery
Gets vertices with a property not equal to a given value. Read more
impl Eq for PropertyPresenceVertexQuery
impl StructuralEq for PropertyPresenceVertexQuery
impl StructuralPartialEq for PropertyPresenceVertexQuery
Auto Trait Implementations
impl RefUnwindSafe for PropertyPresenceVertexQuery
impl Send for PropertyPresenceVertexQuery
impl Sync for PropertyPresenceVertexQuery
impl Unpin for PropertyPresenceVertexQuery
impl UnwindSafe for PropertyPresenceVertexQuery
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