pub struct PipePropertyQuery {
pub inner: Box<Query>,
pub name: Option<Identifier>,
}
Expand description
Returns the properties associated with a vertex or edge.
Fields§
§inner: Box<Query>
The inner query.
name: Option<Identifier>
The property name to get. If None
, all properties will be fetched.
Implementations§
Source§impl PipePropertyQuery
impl PipePropertyQuery
Sourcepub fn new(inner: Box<Query>) -> ValidationResult<Self>
pub fn new(inner: Box<Query>) -> ValidationResult<Self>
Sourcepub fn name(self, name: Identifier) -> Self
pub fn name(self, name: Identifier) -> Self
Trait Implementations§
Source§impl Clone for PipePropertyQuery
impl Clone for PipePropertyQuery
Source§fn clone(&self) -> PipePropertyQuery
fn clone(&self) -> PipePropertyQuery
Returns a duplicate 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 CountQueryExt for PipePropertyQuery
impl CountQueryExt for PipePropertyQuery
Source§fn count(self) -> ValidationResult<CountQuery>
fn count(self) -> ValidationResult<CountQuery>
Gets the count from this query.
Source§impl Debug for PipePropertyQuery
impl Debug for PipePropertyQuery
Source§impl Into<Query> for PipePropertyQuery
impl Into<Query> for PipePropertyQuery
Source§impl PartialEq for PipePropertyQuery
impl PartialEq for PipePropertyQuery
impl Eq for PipePropertyQuery
impl StructuralPartialEq for PipePropertyQuery
Auto Trait Implementations§
impl Freeze for PipePropertyQuery
impl RefUnwindSafe for PipePropertyQuery
impl Send for PipePropertyQuery
impl Sync for PipePropertyQuery
impl Unpin for PipePropertyQuery
impl UnwindSafe for PipePropertyQuery
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.