#[repr(C)]
pub union MArgument {
pub boolean: *mut mbool,
pub integer: *mut mint,
pub real: *mut mreal,
pub cmplex: *mut mcomplex,
pub tensor: *mut MTensor,
pub sparse: *mut MSparseArray,
pub numeric: *mut MNumericArray,
pub image: *mut MImage,
pub utf8string: *mut *mut c_char,
/* private fields */
}Fields§
§boolean: *mut mbool§integer: *mut mint§real: *mut mreal§cmplex: *mut mcomplex§tensor: *mut MTensor§sparse: *mut MSparseArray§numeric: *mut MNumericArray§image: *mut MImage§utf8string: *mut *mut c_charTrait Implementations§
Auto Trait Implementations§
impl Freeze for MArgument
impl RefUnwindSafe for MArgument
impl !Send for MArgument
impl !Sync for MArgument
impl Unpin for MArgument
impl UnwindSafe for MArgument
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