Struct indradb::RangeVertexQuery
source · pub struct RangeVertexQuery {
pub limit: u32,
pub t: Option<Identifier>,
pub start_id: Option<Uuid>,
}Expand description
Gets a range of vertices.
Fields§
§limit: u32Limits 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 copy 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 Debug for RangeVertexQuery
impl Debug for RangeVertexQuery
source§impl Default for RangeVertexQuery
impl Default for RangeVertexQuery
source§impl Into<VertexQuery> for RangeVertexQuery
impl Into<VertexQuery> for RangeVertexQuery
source§fn into(self) -> VertexQuery
fn into(self) -> VertexQuery
Converts this type into the (usually inferred) input type.
source§impl PartialEq<RangeVertexQuery> for RangeVertexQuery
impl PartialEq<RangeVertexQuery> for RangeVertexQuery
source§fn eq(&self, other: &RangeVertexQuery) -> bool
fn eq(&self, other: &RangeVertexQuery) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl VertexQueryExt for RangeVertexQuery
impl VertexQueryExt for RangeVertexQuery
source§fn outbound(self) -> PipeEdgeQuery
fn outbound(self) -> PipeEdgeQuery
Gets the outbound edges associated with the vertices.
source§fn inbound(self) -> PipeEdgeQuery
fn inbound(self) -> PipeEdgeQuery
Gets the inbound edges associated with the vertices.
source§fn property<T: Into<Identifier>>(self, name: T) -> VertexPropertyQuery
fn property<T: Into<Identifier>>(self, name: T) -> VertexPropertyQuery
Gets a property associated with the vertices. Read more
source§fn with_property<T: Into<Identifier>>(
self,
name: T
) -> PipePropertyPresenceVertexQuery
fn with_property<T: Into<Identifier>>(
self,
name: T
) -> PipePropertyPresenceVertexQuery
Gets vertices with a property. Read more
source§fn without_property<T: Into<Identifier>>(
self,
name: T
) -> PipePropertyPresenceVertexQuery
fn without_property<T: Into<Identifier>>(
self,
name: T
) -> PipePropertyPresenceVertexQuery
Gets vertices without a property. Read more
source§fn with_property_equal_to<T: Into<Identifier>>(
self,
name: T,
value: Value
) -> PipePropertyValueVertexQuery
fn with_property_equal_to<T: Into<Identifier>>(
self,
name: T,
value: Value
) -> PipePropertyValueVertexQuery
Gets vertices with a property equal to a given value. Read more
source§fn with_property_not_equal_to<T: Into<Identifier>>(
self,
name: T,
value: Value
) -> PipePropertyValueVertexQuery
fn with_property_not_equal_to<T: Into<Identifier>>(
self,
name: T,
value: Value
) -> PipePropertyValueVertexQuery
Gets vertices with a property not equal to a given value. Read more