pub struct EdgeProposal {
pub src_id: String,
pub dst_id: String,
pub edge_type: String,
}Expand description
A proposed relation edge between two active memories.
Fields§
§src_id: String§dst_id: String§edge_type: StringTrait Implementations§
Source§impl Clone for EdgeProposal
impl Clone for EdgeProposal
Source§fn clone(&self) -> EdgeProposal
fn clone(&self) -> EdgeProposal
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 EdgeProposal
impl Debug for EdgeProposal
impl Eq for EdgeProposal
Source§impl Ord for EdgeProposal
impl Ord for EdgeProposal
Source§fn cmp(&self, other: &EdgeProposal) -> Ordering
fn cmp(&self, other: &EdgeProposal) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for EdgeProposal
impl PartialEq for EdgeProposal
Source§fn eq(&self, other: &EdgeProposal) -> bool
fn eq(&self, other: &EdgeProposal) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for EdgeProposal
impl PartialOrd for EdgeProposal
impl StructuralPartialEq for EdgeProposal
Auto Trait Implementations§
impl Freeze for EdgeProposal
impl RefUnwindSafe for EdgeProposal
impl Send for EdgeProposal
impl Sync for EdgeProposal
impl Unpin for EdgeProposal
impl UnsafeUnpin for EdgeProposal
impl UnwindSafe for EdgeProposal
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