Enum indradb::VertexQuery [−][src]
pub enum VertexQuery { All { start_id: Option<Uuid>, limit: u32, }, Vertices { ids: Vec<Uuid>, }, Pipe { edge_query: Box<EdgeQuery>, converter: EdgeDirection, limit: u32, }, }
A query for vertices.
This is used by transactions to get, set and delete vertices and vertex metadata.
Variants
All
Fields of All
start_id: Option<Uuid> | |
limit: u32 |
Vertices
Fields of Vertices
ids: Vec<Uuid> |
Pipe
Fields of Pipe
edge_query: Box<EdgeQuery> | |
converter: EdgeDirection | |
limit: u32 |
Methods
impl VertexQuery
[src]
impl VertexQuery
pub fn outbound_edges(
self,
t: Option<Type>,
high: Option<DateTime<Utc>>,
low: Option<DateTime<Utc>>,
limit: u32
) -> EdgeQuery
[src]
pub fn outbound_edges(
self,
t: Option<Type>,
high: Option<DateTime<Utc>>,
low: Option<DateTime<Utc>>,
limit: u32
) -> EdgeQuery
pub fn inbound_edges(
self,
t: Option<Type>,
high: Option<DateTime<Utc>>,
low: Option<DateTime<Utc>>,
limit: u32
) -> EdgeQuery
[src]
pub fn inbound_edges(
self,
t: Option<Type>,
high: Option<DateTime<Utc>>,
low: Option<DateTime<Utc>>,
limit: u32
) -> EdgeQuery
Trait Implementations
impl Eq for VertexQuery
[src]
impl Eq for VertexQuery
impl PartialEq for VertexQuery
[src]
impl PartialEq for VertexQuery
fn eq(&self, other: &VertexQuery) -> bool
[src]
fn eq(&self, other: &VertexQuery) -> bool
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, other: &VertexQuery) -> bool
[src]
fn ne(&self, other: &VertexQuery) -> bool
This method tests for !=
.
impl Clone for VertexQuery
[src]
impl Clone for VertexQuery
fn clone(&self) -> VertexQuery
[src]
fn clone(&self) -> VertexQuery
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
fn clone_from(&mut self, source: &Self)
1.0.0
[src]Performs copy-assignment from source
. Read more
impl Debug for VertexQuery
[src]
impl Debug for VertexQuery
fn fmt(&self, f: &mut Formatter) -> Result
[src]
fn fmt(&self, f: &mut Formatter) -> Result
Formats the value using the given formatter. Read more
impl Hash for VertexQuery
[src]
impl Hash for VertexQuery
Auto Trait Implementations
impl Send for VertexQuery
impl Send for VertexQuery
impl Sync for VertexQuery
impl Sync for VertexQuery