Enum indradb::BulkInsertItem
source · pub enum BulkInsertItem {
Vertex(Vertex),
Edge(EdgeKey),
VertexProperty(Uuid, String, JsonValue),
EdgeProperty(EdgeKey, String, JsonValue),
}Variants
Vertex(Vertex)
Edge(EdgeKey)
VertexProperty(Uuid, String, JsonValue)
EdgeProperty(EdgeKey, String, JsonValue)
Trait Implementations
sourceimpl Clone for BulkInsertItem
impl Clone for BulkInsertItem
sourcefn clone(&self) -> BulkInsertItem
fn clone(&self) -> BulkInsertItem
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for BulkInsertItem
impl Debug for BulkInsertItem
sourceimpl<'de> Deserialize<'de> for BulkInsertItem
impl<'de> Deserialize<'de> for BulkInsertItem
sourcefn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
sourceimpl PartialEq<BulkInsertItem> for BulkInsertItem
impl PartialEq<BulkInsertItem> for BulkInsertItem
sourcefn eq(&self, other: &BulkInsertItem) -> bool
fn eq(&self, other: &BulkInsertItem) -> bool
sourceimpl Serialize for BulkInsertItem
impl Serialize for BulkInsertItem
impl StructuralPartialEq for BulkInsertItem
Auto Trait Implementations
impl RefUnwindSafe for BulkInsertItem
impl Send for BulkInsertItem
impl Sync for BulkInsertItem
impl Unpin for BulkInsertItem
impl UnwindSafe for BulkInsertItem
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more