pub struct TraceLashlangGraphEdge {
pub id: String,
pub from: String,
pub to: String,
pub label: String,
pub selection: TraceLashlangEdgeSelection,
}Expand description
Trace-derived Lashlang graph edge.
Fields§
§id: String§from: String§to: String§label: String§selection: TraceLashlangEdgeSelectionTrait Implementations§
Source§impl Clone for TraceLashlangGraphEdge
impl Clone for TraceLashlangGraphEdge
Source§fn clone(&self) -> TraceLashlangGraphEdge
fn clone(&self) -> TraceLashlangGraphEdge
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 TraceLashlangGraphEdge
impl Debug for TraceLashlangGraphEdge
Source§impl<'de> Deserialize<'de> for TraceLashlangGraphEdge
impl<'de> Deserialize<'de> for TraceLashlangGraphEdge
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<TraceLashlangGraphEdge, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<TraceLashlangGraphEdge, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for TraceLashlangGraphEdge
Source§impl PartialEq for TraceLashlangGraphEdge
impl PartialEq for TraceLashlangGraphEdge
Source§fn eq(&self, other: &TraceLashlangGraphEdge) -> bool
fn eq(&self, other: &TraceLashlangGraphEdge) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for TraceLashlangGraphEdge
impl Serialize for TraceLashlangGraphEdge
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 TraceLashlangGraphEdge
Auto Trait Implementations§
impl Freeze for TraceLashlangGraphEdge
impl RefUnwindSafe for TraceLashlangGraphEdge
impl Send for TraceLashlangGraphEdge
impl Sync for TraceLashlangGraphEdge
impl Unpin for TraceLashlangGraphEdge
impl UnsafeUnpin for TraceLashlangGraphEdge
impl UnwindSafe for TraceLashlangGraphEdge
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