pub enum ScriptStatus {
LOADED,
RUNNING,
ERROR,
}
Expand description
Runtime status of a script.
Variants§
LOADED
Script loaded but not running
RUNNING
Script running
ERROR
Script unable to run due to a syntax or other error
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ScriptStatus
impl RefUnwindSafe for ScriptStatus
impl Send for ScriptStatus
impl Sync for ScriptStatus
impl Unpin for ScriptStatus
impl UnwindSafe for ScriptStatus
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