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