pub struct RemoveEdge {
pub out_node_key: i64,
pub in_node_key: i64,
pub edge_type: EdgeType,
pub properties_hash: Vec<u8>,
}
Fields§
§out_node_key: i64
§in_node_key: i64
§edge_type: EdgeType
§properties_hash: Vec<u8>
used to identify edges (since our edges don’t have ids)
Trait Implementations§
Source§impl Clone for RemoveEdge
impl Clone for RemoveEdge
Source§fn clone(&self) -> RemoveEdge
fn clone(&self) -> RemoveEdge
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 RemoveEdge
impl Debug for RemoveEdge
Source§impl<'de> Deserialize<'de> for RemoveEdge
impl<'de> Deserialize<'de> for RemoveEdge
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
Source§impl PartialEq for RemoveEdge
impl PartialEq for RemoveEdge
Source§impl Serialize for RemoveEdge
impl Serialize for RemoveEdge
impl StructuralPartialEq for RemoveEdge
Auto Trait Implementations§
impl Freeze for RemoveEdge
impl RefUnwindSafe for RemoveEdge
impl Send for RemoveEdge
impl Sync for RemoveEdge
impl Unpin for RemoveEdge
impl UnwindSafe for RemoveEdge
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