mxArray

Type Alias mxArray 

Source
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 mxArray
where T: FromMatlab<'a>,

Source§

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.