Enum indradb::BulkInsertItem
source · pub enum BulkInsertItem {
Vertex(Vertex),
Edge(EdgeKey),
VertexProperty(Uuid, Identifier, Value),
EdgeProperty(EdgeKey, Identifier, Value),
}Expand description
An item to insert, as part of a bulk insert request.
Variants§
Vertex(Vertex)
A vertex to insert.
Edge(EdgeKey)
An edge to insert.
VertexProperty(Uuid, Identifier, Value)
A vertex property to insert.
EdgeProperty(EdgeKey, Identifier, Value)
An edge property to insert.
Trait Implementations§
source§impl Clone for BulkInsertItem
impl Clone for BulkInsertItem
source§fn clone(&self) -> BulkInsertItem
fn clone(&self) -> BulkInsertItem
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 BulkInsertItem
impl Debug for BulkInsertItem
source§impl PartialEq<BulkInsertItem> for BulkInsertItem
impl PartialEq<BulkInsertItem> for BulkInsertItem
source§fn eq(&self, other: &BulkInsertItem) -> bool
fn eq(&self, other: &BulkInsertItem) -> bool
This method tests for
self and other values to be equal, and is used
by ==.