Struct indradb::EdgePropertyQuery
source · [−]pub struct EdgePropertyQuery {
pub inner: EdgeQuery,
pub name: Identifier,
}
Expand description
Gets property values associated with edges.
Fields
inner: EdgeQuery
The edge query to build off of.
name: Identifier
The name of the property to get.
Implementations
sourceimpl 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
sourceimpl Clone for EdgePropertyQuery
impl Clone for EdgePropertyQuery
sourcefn clone(&self) -> EdgePropertyQuery
fn clone(&self) -> EdgePropertyQuery
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 EdgePropertyQuery
impl Debug for EdgePropertyQuery
sourceimpl PartialEq<EdgePropertyQuery> for EdgePropertyQuery
impl PartialEq<EdgePropertyQuery> for EdgePropertyQuery
sourcefn 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 ==
. Read more
sourcefn ne(&self, other: &EdgePropertyQuery) -> bool
fn ne(&self, other: &EdgePropertyQuery) -> bool
This method tests for !=
.
impl Eq for EdgePropertyQuery
impl StructuralEq for EdgePropertyQuery
impl StructuralPartialEq for EdgePropertyQuery
Auto Trait Implementations
impl RefUnwindSafe for EdgePropertyQuery
impl Send for EdgePropertyQuery
impl Sync for EdgePropertyQuery
impl Unpin for EdgePropertyQuery
impl UnwindSafe for EdgePropertyQuery
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