pub trait MutMatlabClass<P>: MatlabClass<P> + DerefMut {
type AsBorrowed<'a>
where Self: 'a,
P: 'a;
// Required methods
fn as_borrowed<'a>(&'a self) -> Self::AsBorrowed<'a>;
fn inner_mut(&mut self) -> &mut P;
}Expand description
Denotes whether the Matlab class is mutable.
Required Associated Types§
type AsBorrowed<'a> where Self: 'a, P: 'a
Required Methods§
fn as_borrowed<'a>(&'a self) -> Self::AsBorrowed<'a>
fn inner_mut(&mut self) -> &mut P
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.