pub enum WorkSpace {
Base,
Caller,
Global,
}Expand description
Possible workspaces to put your variable
Variants§
Base
The base workspace, i.e. the command prompt.
Caller
The workspace formed by the callframe of the function that called this MEX
function. Equivalent to Base if called from the command prompt.
Global
The workspace with all the global variables.
Trait Implementations§
impl Copy for WorkSpace
impl Eq for WorkSpace
impl StructuralPartialEq for WorkSpace
Auto Trait Implementations§
impl Freeze for WorkSpace
impl RefUnwindSafe for WorkSpace
impl Send for WorkSpace
impl Sync for WorkSpace
impl Unpin for WorkSpace
impl UnwindSafe for WorkSpace
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