pub struct TerseGraphEdge {
pub id: String,
pub from_id: String,
pub to_id: String,
pub kind: String,
pub properties: BTreeMap<String, String>,
}Fields§
§id: String§from_id: String§to_id: String§kind: String§properties: BTreeMap<String, String>Trait Implementations§
Source§impl Clone for TerseGraphEdge
impl Clone for TerseGraphEdge
Source§fn clone(&self) -> TerseGraphEdge
fn clone(&self) -> TerseGraphEdge
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 TerseGraphEdge
impl Debug for TerseGraphEdge
Source§impl<'de> Deserialize<'de> for TerseGraphEdge
impl<'de> Deserialize<'de> for TerseGraphEdge
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<TerseGraphEdge, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<TerseGraphEdge, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for TerseGraphEdge
Source§impl From<&GraphEdge> for TerseGraphEdge
impl From<&GraphEdge> for TerseGraphEdge
Source§fn from(edge: &GraphEdge) -> TerseGraphEdge
fn from(edge: &GraphEdge) -> TerseGraphEdge
Converts to this type from the input type.
Source§impl From<&TerseGraphEdge> for GraphEdge
impl From<&TerseGraphEdge> for GraphEdge
Source§fn from(edge: &TerseGraphEdge) -> GraphEdge
fn from(edge: &TerseGraphEdge) -> GraphEdge
Converts to this type from the input type.
Source§impl From<GraphEdge> for TerseGraphEdge
impl From<GraphEdge> for TerseGraphEdge
Source§fn from(edge: GraphEdge) -> TerseGraphEdge
fn from(edge: GraphEdge) -> TerseGraphEdge
Converts to this type from the input type.
Source§impl From<TerseGraphEdge> for GraphEdge
impl From<TerseGraphEdge> for GraphEdge
Source§fn from(edge: TerseGraphEdge) -> GraphEdge
fn from(edge: TerseGraphEdge) -> GraphEdge
Converts to this type from the input type.
Source§impl PartialEq for TerseGraphEdge
impl PartialEq for TerseGraphEdge
Source§fn eq(&self, other: &TerseGraphEdge) -> bool
fn eq(&self, other: &TerseGraphEdge) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for TerseGraphEdge
impl Serialize for TerseGraphEdge
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for TerseGraphEdge
Auto Trait Implementations§
impl Freeze for TerseGraphEdge
impl RefUnwindSafe for TerseGraphEdge
impl Send for TerseGraphEdge
impl Sync for TerseGraphEdge
impl Unpin for TerseGraphEdge
impl UnsafeUnpin for TerseGraphEdge
impl UnwindSafe for TerseGraphEdge
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