pub struct SpecificVertexQuery {
pub ids: Vec<Uuid>,
}
Expand description
Gets a specific set of vertices.
Fields§
§ids: Vec<Uuid>
The IDs of the vertices to get.
Implementations§
Trait Implementations§
Source§impl Clone for SpecificVertexQuery
impl Clone for SpecificVertexQuery
Source§fn clone(&self) -> SpecificVertexQuery
fn clone(&self) -> SpecificVertexQuery
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl CountQueryExt for SpecificVertexQuery
impl CountQueryExt for SpecificVertexQuery
Source§fn count(self) -> ValidationResult<CountQuery>
fn count(self) -> ValidationResult<CountQuery>
Gets the count from this query.
Source§impl Debug for SpecificVertexQuery
impl Debug for SpecificVertexQuery
Source§impl Into<Query> for SpecificVertexQuery
impl Into<Query> for SpecificVertexQuery
Source§impl PartialEq for SpecificVertexQuery
impl PartialEq for SpecificVertexQuery
Source§impl QueryExt for SpecificVertexQuery
impl QueryExt for SpecificVertexQuery
Source§fn outbound(self) -> ValidationResult<PipeQuery>
fn outbound(self) -> ValidationResult<PipeQuery>
Gets the outbound vertices or edges associated with this query.
Source§fn inbound(self) -> ValidationResult<PipeQuery>
fn inbound(self) -> ValidationResult<PipeQuery>
Gets the inbound vertices or edges associated with this query.
Source§fn with_property<T: Into<Identifier>>(
self,
name: T,
) -> ValidationResult<PipeWithPropertyPresenceQuery>
fn with_property<T: Into<Identifier>>( self, name: T, ) -> ValidationResult<PipeWithPropertyPresenceQuery>
Gets values with a property. Read more
Source§fn without_property<T: Into<Identifier>>(
self,
name: T,
) -> ValidationResult<PipeWithPropertyPresenceQuery>
fn without_property<T: Into<Identifier>>( self, name: T, ) -> ValidationResult<PipeWithPropertyPresenceQuery>
Gets values without a property. Read more
Source§fn with_property_equal_to<T: Into<Identifier>>(
self,
name: T,
value: Json,
) -> ValidationResult<PipeWithPropertyValueQuery>
fn with_property_equal_to<T: Into<Identifier>>( self, name: T, value: Json, ) -> ValidationResult<PipeWithPropertyValueQuery>
Gets values with a property equal to a given value. Read more
Source§fn with_property_not_equal_to<T: Into<Identifier>>(
self,
name: T,
value: Json,
) -> ValidationResult<PipeWithPropertyValueQuery>
fn with_property_not_equal_to<T: Into<Identifier>>( self, name: T, value: Json, ) -> ValidationResult<PipeWithPropertyValueQuery>
Gets values with a property not equal to a given value. Read more
Source§fn properties(self) -> ValidationResult<PipePropertyQuery>
fn properties(self) -> ValidationResult<PipePropertyQuery>
Gets the properties associated with the query results.
Source§fn include(self) -> IncludeQuery
fn include(self) -> IncludeQuery
Include this query’s output, even if it is an intermediate result.
impl Eq for SpecificVertexQuery
impl StructuralPartialEq for SpecificVertexQuery
Auto Trait Implementations§
impl Freeze for SpecificVertexQuery
impl RefUnwindSafe for SpecificVertexQuery
impl Send for SpecificVertexQuery
impl Sync for SpecificVertexQuery
impl Unpin for SpecificVertexQuery
impl UnwindSafe for SpecificVertexQuery
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