pub enum ManagedExpressionEvent {
Create(Id),
Drop(Id),
}Expand description
Lifecycle events triggered by the creation and deallocation of managed expressions.
Variants§
Create(Id)
Instruction that the library should create a new instance of a managed expression
with the specified Id.
This event occurs when CreateManagedLibraryExpression is called.
Drop(Id)
Instruction that the library should drop any data associated with the managed
expression identified by this Id.
This event occurs when the managed expression is no longer used by the Wolfram Language.
Implementations§
Auto Trait Implementations§
impl Freeze for ManagedExpressionEvent
impl RefUnwindSafe for ManagedExpressionEvent
impl Send for ManagedExpressionEvent
impl Sync for ManagedExpressionEvent
impl Unpin for ManagedExpressionEvent
impl UnwindSafe for ManagedExpressionEvent
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