pub struct OutCol<A> {
pub edge: Option<Edge>,
/* private fields */
}Expand description
Represents some output pin that might have an edge attached. If an edge is attached, the parent node can send data to some receiving node’s aggregator.
Fields§
§edge: Option<Edge>Trait Implementations§
Auto Trait Implementations§
impl<A> Freeze for OutCol<A>where
PhantomData<A>: Freeze,
impl<A> RefUnwindSafe for OutCol<A>where
PhantomData<A>: RefUnwindSafe,
impl<A> Send for OutCol<A>where
PhantomData<A>: Send,
impl<A> Sync for OutCol<A>where
PhantomData<A>: Sync,
impl<A> Unpin for OutCol<A>where
PhantomData<A>: Unpin,
impl<A> UnsafeUnpin for OutCol<A>where
PhantomData<A>: UnsafeUnpin,
impl<A> UnwindSafe for OutCol<A>where
PhantomData<A>: UnwindSafe,
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