pub struct EdgeKey {
pub outbound_id: Uuid,
pub t: Identifier,
pub inbound_id: Uuid,
}Expand description
Represents a uniquely identifiable key to an edge.
Fields§
§outbound_id: UuidThe id of the outbound vertex.
t: IdentifierThe type of the edge.
inbound_id: UuidThe id of the inbound vertex.
Implementations§
Trait Implementations§
source§impl<'de> Deserialize<'de> for EdgeKey
impl<'de> Deserialize<'de> for EdgeKey
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 Ord for EdgeKey
impl Ord for EdgeKey
source§impl PartialEq<EdgeKey> for EdgeKey
impl PartialEq<EdgeKey> for EdgeKey
source§impl PartialOrd<EdgeKey> for EdgeKey
impl PartialOrd<EdgeKey> for EdgeKey
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self and other) and is used by the <=
operator. Read more