pub trait DynHandle {
    fn dyn_mappable_handle_mut<'a>(&'a mut self) -> Box<dyn MappableHandle + 'a>;
}

Required Methods

Gets an exclusive reference to the backend handle of this picture. Assumes that this picture is backed by a handle and panics if not the case.

Implementors