pub struct MeaningEdge {
pub from: String,
pub to: String,
pub kind: String,
}Expand description
Directed semantic DAG edge.
Fields§
§from: StringSource node.
to: StringTarget node.
kind: StringEdge kind.
Implementations§
Trait Implementations§
Source§impl Clone for MeaningEdge
impl Clone for MeaningEdge
Source§fn clone(&self) -> MeaningEdge
fn clone(&self) -> MeaningEdge
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 MeaningEdge
impl Debug for MeaningEdge
impl Eq for MeaningEdge
Source§impl PartialEq for MeaningEdge
impl PartialEq for MeaningEdge
Source§fn eq(&self, other: &MeaningEdge) -> bool
fn eq(&self, other: &MeaningEdge) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for MeaningEdge
Auto Trait Implementations§
impl Freeze for MeaningEdge
impl RefUnwindSafe for MeaningEdge
impl Send for MeaningEdge
impl Sync for MeaningEdge
impl Unpin for MeaningEdge
impl UnsafeUnpin for MeaningEdge
impl UnwindSafe for MeaningEdge
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