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