pub enum BulkInsertItem {
Vertex(Vertex),
Edge(Edge),
VertexProperty(Uuid, Identifier, Json),
EdgeProperty(Edge, Identifier, Json),
}
Expand description
An item to insert, as part of a bulk insert request.
Variants§
Vertex(Vertex)
A vertex to insert.
Edge(Edge)
An edge to insert.
VertexProperty(Uuid, Identifier, Json)
A vertex property to insert.
EdgeProperty(Edge, Identifier, Json)
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 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 BulkInsertItem
impl Debug for BulkInsertItem
Source§impl PartialEq for BulkInsertItem
impl PartialEq for BulkInsertItem
impl StructuralPartialEq for BulkInsertItem
Auto Trait Implementations§
impl Freeze for BulkInsertItem
impl RefUnwindSafe for BulkInsertItem
impl Send for BulkInsertItem
impl Sync for BulkInsertItem
impl Unpin for BulkInsertItem
impl UnwindSafe for BulkInsertItem
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