pub trait Layer: Default {
// Required methods
fn with_bounds(bounds: Rectangle) -> Self;
fn flush(&mut self);
fn resize(&mut self, bounds: Rectangle);
fn reset(&mut self);
}
Expand description
A layer of graphical primitives.
Layers normally dictate a set of primitives that are rendered in a specific order.
Required Methods§
Sourcefn with_bounds(bounds: Rectangle) -> Self
fn with_bounds(bounds: Rectangle) -> Self
Creates a new Layer
with the given bounds.
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.