pub struct InterruptInfo {
pub node: String,
pub value: Value,
pub id: Option<String>,
}Expand description
Information about a human-in-the-loop interrupt
Contains details about where and why execution was interrupted.
Fields§
§node: StringNode that raised the interrupt
value: ValueInterrupt payload value
id: Option<String>Optional interrupt identifier
Trait Implementations§
Source§impl Clone for InterruptInfo
impl Clone for InterruptInfo
Source§fn clone(&self) -> InterruptInfo
fn clone(&self) -> InterruptInfo
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 moreAuto Trait Implementations§
impl Freeze for InterruptInfo
impl RefUnwindSafe for InterruptInfo
impl Send for InterruptInfo
impl Sync for InterruptInfo
impl Unpin for InterruptInfo
impl UnsafeUnpin for InterruptInfo
impl UnwindSafe for InterruptInfo
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