pub struct RemoveEdgeProperty {
pub out_node_key: i64,
pub in_node_key: i64,
pub edge_type: EdgeType,
pub properties_hash: Vec<u8>,
pub property_name: EdgePropertyName,
}
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)
property_name: EdgePropertyName
Trait Implementations§
Source§impl Clone for RemoveEdgeProperty
impl Clone for RemoveEdgeProperty
Source§fn clone(&self) -> RemoveEdgeProperty
fn clone(&self) -> RemoveEdgeProperty
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 RemoveEdgeProperty
impl Debug for RemoveEdgeProperty
Source§impl<'de> Deserialize<'de> for RemoveEdgeProperty
impl<'de> Deserialize<'de> for RemoveEdgeProperty
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 RemoveEdgeProperty
impl PartialEq for RemoveEdgeProperty
Source§impl Serialize for RemoveEdgeProperty
impl Serialize for RemoveEdgeProperty
impl StructuralPartialEq for RemoveEdgeProperty
Auto Trait Implementations§
impl Freeze for RemoveEdgeProperty
impl RefUnwindSafe for RemoveEdgeProperty
impl Send for RemoveEdgeProperty
impl Sync for RemoveEdgeProperty
impl Unpin for RemoveEdgeProperty
impl UnwindSafe for RemoveEdgeProperty
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