pub trait Fill<I>: Surface { // Required method fn fill_from(&mut self, data: I); }
The surface that can be filled directly.
Fill the surface from the provided data.
data