pub struct AdditionalEdgeProperty {
pub edge_id: i64,
pub property: Option<EdgeProperty>,
pub out_node_key: i64,
pub in_node_key: i64,
pub edge_type: EdgeType,
}
Fields§
§edge_id: i64
§property: Option<EdgeProperty>
§out_node_key: i64
§in_node_key: i64
§edge_type: EdgeType
Trait Implementations§
Source§impl Clone for AdditionalEdgeProperty
impl Clone for AdditionalEdgeProperty
Source§fn clone(&self) -> AdditionalEdgeProperty
fn clone(&self) -> AdditionalEdgeProperty
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 AdditionalEdgeProperty
impl Debug for AdditionalEdgeProperty
Source§impl<'de> Deserialize<'de> for AdditionalEdgeProperty
impl<'de> Deserialize<'de> for AdditionalEdgeProperty
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 AdditionalEdgeProperty
impl PartialEq for AdditionalEdgeProperty
Source§impl Serialize for AdditionalEdgeProperty
impl Serialize for AdditionalEdgeProperty
impl StructuralPartialEq for AdditionalEdgeProperty
Auto Trait Implementations§
impl Freeze for AdditionalEdgeProperty
impl RefUnwindSafe for AdditionalEdgeProperty
impl Send for AdditionalEdgeProperty
impl Sync for AdditionalEdgeProperty
impl Unpin for AdditionalEdgeProperty
impl UnwindSafe for AdditionalEdgeProperty
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