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