pub enum InterruptKind {
Before,
After,
}Expand description
When a graph interrupt fires relative to a node’s execute call.
Variants§
Before
Before the node’s execute is invoked.
After
After the node’s execute completes (state already updated).
Trait Implementations§
Source§impl Clone for InterruptKind
impl Clone for InterruptKind
Source§fn clone(&self) -> InterruptKind
fn clone(&self) -> InterruptKind
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 InterruptKind
impl Debug for InterruptKind
Source§impl Display for InterruptKind
impl Display for InterruptKind
Source§impl PartialEq for InterruptKind
impl PartialEq for InterruptKind
Source§fn eq(&self, other: &InterruptKind) -> bool
fn eq(&self, other: &InterruptKind) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for InterruptKind
impl Eq for InterruptKind
impl StructuralPartialEq for InterruptKind
Auto Trait Implementations§
impl Freeze for InterruptKind
impl RefUnwindSafe for InterruptKind
impl Send for InterruptKind
impl Sync for InterruptKind
impl Unpin for InterruptKind
impl UnsafeUnpin for InterruptKind
impl UnwindSafe for InterruptKind
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