pub type mxArray = mxArray_tag;Expand description
The main matlab opaque array type, returned and accepted as argument by various mex functions.
Aliased Type§
pub struct mxArray { /* private fields */ }Trait Implementations§
Source§impl<'a, T> IntoRust<'a, T> for &'a mxArraywhere
T: FromMatlab<'a>,
impl<'a, T> IntoRust<'a, T> for &'a mxArraywhere
T: FromMatlab<'a>,
Source§fn to_rust(&self) -> Result<T, FromMxError<'a>>
fn to_rust(&self) -> Result<T, FromMxError<'a>>
from_matlab is to to_rust as from is to into: this method
makes method chaining possible, and thus allows for greater ergonomics. Best
used in combination with
missing::error_if_missing.