pub trait ToGlibPtrMut<'a, P: Copy> {
type Storage;
// Required method
fn to_glib_none_mut(&'a mut self) -> StashMut<'_, P, Self>;
}
Expand description
Translate to a pointer with a mutable borrow.
Required Associated Types§
Required Methods§
Sourcefn to_glib_none_mut(&'a mut self) -> StashMut<'_, P, Self>
fn to_glib_none_mut(&'a mut self) -> StashMut<'_, P, Self>
Transfer: none.
The pointer in the Stash
is only valid for the lifetime of the Stash
.
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.