pub struct RangeVertexQuery {
pub limit: u32,
pub t: Option<Identifier>,
pub start_id: Option<Uuid>,
}
Expand description
Gets a range of vertices.
Fields§
§limit: u32
Limits the number of vertices to get.
t: Option<Identifier>
Filters the type of vertices returned.
start_id: Option<Uuid>
Sets the lowest vertex ID to return.
Implementations§
Source§impl RangeVertexQuery
impl RangeVertexQuery
Trait Implementations§
Source§impl Clone for RangeVertexQuery
impl Clone for RangeVertexQuery
Source§fn clone(&self) -> RangeVertexQuery
fn clone(&self) -> RangeVertexQuery
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 RangeVertexQuery
impl CountQueryExt for RangeVertexQuery
Source§fn count(self) -> ValidationResult<CountQuery>
fn count(self) -> ValidationResult<CountQuery>
Gets the count from this query.
Source§impl Debug for RangeVertexQuery
impl Debug for RangeVertexQuery
Source§impl Default for RangeVertexQuery
impl Default for RangeVertexQuery
Source§impl Into<Query> for RangeVertexQuery
impl Into<Query> for RangeVertexQuery
Source§impl PartialEq for RangeVertexQuery
impl PartialEq for RangeVertexQuery
Source§impl QueryExt for RangeVertexQuery
impl QueryExt for RangeVertexQuery
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 RangeVertexQuery
impl StructuralPartialEq for RangeVertexQuery
Auto Trait Implementations§
impl Freeze for RangeVertexQuery
impl RefUnwindSafe for RangeVertexQuery
impl Send for RangeVertexQuery
impl Sync for RangeVertexQuery
impl Unpin for RangeVertexQuery
impl UnwindSafe for RangeVertexQuery
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