pub enum QueryOutputValue {
Vertices(Vec<Vertex>),
Edges(Vec<Edge>),
Count(u64),
VertexProperties(Vec<VertexProperties>),
EdgeProperties(Vec<EdgeProperties>),
}
Expand description
Value(s) returned from a query.
Variants§
Vertices(Vec<Vertex>)
Vertices.
Edges(Vec<Edge>)
Edges.
Count(u64)
A Count.
VertexProperties(Vec<VertexProperties>)
Vertex properties.
EdgeProperties(Vec<EdgeProperties>)
Edge properties.
Trait Implementations§
Source§impl Clone for QueryOutputValue
impl Clone for QueryOutputValue
Source§fn clone(&self) -> QueryOutputValue
fn clone(&self) -> QueryOutputValue
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 Debug for QueryOutputValue
impl Debug for QueryOutputValue
Source§impl PartialEq for QueryOutputValue
impl PartialEq for QueryOutputValue
impl StructuralPartialEq for QueryOutputValue
Auto Trait Implementations§
impl Freeze for QueryOutputValue
impl RefUnwindSafe for QueryOutputValue
impl Send for QueryOutputValue
impl Sync for QueryOutputValue
impl Unpin for QueryOutputValue
impl UnwindSafe for QueryOutputValue
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