pub trait OwnedMatlabClass: MutMatlabClass<MxArray> {
type AsMutable<'a>
where Self: 'a;
// Required method
fn as_mutable<'a>(&'a mut self) -> Self::AsMutable<'a>;
}Expand description
Denotes whether a Matlab class owns its data.
Required Associated Types§
Required Methods§
Sourcefn as_mutable<'a>(&'a mut self) -> Self::AsMutable<'a>
fn as_mutable<'a>(&'a mut self) -> Self::AsMutable<'a>
Create a MutMatlabClass from this owned instance.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.