pub enum InterruptType {
Before,
During,
After,
}Expand description
Type of interrupt
Variants§
Before
Interrupt before node execution
During
Interrupt during node execution
After
Interrupt after node execution
Trait Implementations§
Source§impl Clone for InterruptType
impl Clone for InterruptType
Source§fn clone(&self) -> InterruptType
fn clone(&self) -> InterruptType
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 InterruptType
impl Debug for InterruptType
Source§impl<'de> Deserialize<'de> for InterruptType
impl<'de> Deserialize<'de> for InterruptType
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for InterruptType
impl PartialEq for InterruptType
Source§impl Serialize for InterruptType
impl Serialize for InterruptType
impl Copy for InterruptType
impl Eq for InterruptType
impl StructuralPartialEq for InterruptType
Auto Trait Implementations§
impl Freeze for InterruptType
impl RefUnwindSafe for InterruptType
impl Send for InterruptType
impl Sync for InterruptType
impl Unpin for InterruptType
impl UnsafeUnpin for InterruptType
impl UnwindSafe for InterruptType
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