pub trait DrawableMut: Drawable {
    fn draw_mut<T: Drawer>(&mut self, window: &mut T) { ... }
    fn draw_with_context_mut(&mut self, context: &mut Context<'_>) { ... }
}

Provided Methods

Mutable version of draw function.

Mutable draw context function.

Implementors