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