pub struct VertexInsert {
pub variable: Option<String>,
pub labels: Vec<String>,
pub properties: HashMap<String, ValueExpression>,
}
Expand description
Vertex insert
Fields§
§variable: Option<String>
§labels: Vec<String>
§properties: HashMap<String, ValueExpression>
Trait Implementations§
Source§impl Clone for VertexInsert
impl Clone for VertexInsert
Source§fn clone(&self) -> VertexInsert
fn clone(&self) -> VertexInsert
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 VertexInsert
impl Debug for VertexInsert
Source§impl<'de> Deserialize<'de> for VertexInsert
impl<'de> Deserialize<'de> for VertexInsert
Source§fn 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
Auto Trait Implementations§
impl Freeze for VertexInsert
impl RefUnwindSafe for VertexInsert
impl Send for VertexInsert
impl Sync for VertexInsert
impl Unpin for VertexInsert
impl UnwindSafe for VertexInsert
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