pub struct DataFlowEdge {
pub producer: String,
pub consumer: String,
pub key: String,
}Expand description
A data flow edge between two agents.
Fields§
§producer: StringThe agent that writes the key.
consumer: StringThe agent that reads the key.
key: StringThe state key.
Trait Implementations§
Source§impl Clone for DataFlowEdge
impl Clone for DataFlowEdge
Source§fn clone(&self) -> DataFlowEdge
fn clone(&self) -> DataFlowEdge
Returns a duplicate of the value. Read more
1.0.0 · 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 DataFlowEdge
impl Debug for DataFlowEdge
Source§impl PartialEq for DataFlowEdge
impl PartialEq for DataFlowEdge
impl StructuralPartialEq for DataFlowEdge
Auto Trait Implementations§
impl Freeze for DataFlowEdge
impl RefUnwindSafe for DataFlowEdge
impl Send for DataFlowEdge
impl Sync for DataFlowEdge
impl Unpin for DataFlowEdge
impl UnwindSafe for DataFlowEdge
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