pub struct DagEdge {
pub from: ViewId,
pub to: ViewId,
}Expand description
An edge in the IVM DAG, connecting an upstream view to a downstream view.
Fields§
§from: ViewIdThe upstream view that produces deltas.
to: ViewIdThe downstream view that consumes deltas.
Trait Implementations§
impl Eq for DagEdge
impl StructuralPartialEq for DagEdge
Auto Trait Implementations§
impl Freeze for DagEdge
impl RefUnwindSafe for DagEdge
impl Send for DagEdge
impl Sync for DagEdge
impl Unpin for DagEdge
impl UnsafeUnpin for DagEdge
impl UnwindSafe for DagEdge
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.