pub enum EventKind {
Ping(usize),
ExecutionStart(Box<ExecutionContext>, PacketStream),
ExecutionDone,
PortData(PortReference),
Invocation(NodeIndex, Box<Invocation>),
CallComplete(CallComplete),
Close(Option<ExecutionError>),
}
Variants§
Ping(usize)
ExecutionStart(Box<ExecutionContext>, PacketStream)
ExecutionDone
PortData(PortReference)
Invocation(NodeIndex, Box<Invocation>)
CallComplete(CallComplete)
Close(Option<ExecutionError>)
Trait Implementations§
Auto Trait Implementations§
impl !RefUnwindSafe for EventKind
impl Send for EventKind
impl !Sync for EventKind
impl Unpin for EventKind
impl !UnwindSafe for EventKind
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