pub trait OverlayAt<W> {
// Required method
unsafe fn overlay_at(&mut self, with: &W, x: u32, y: u32) -> &mut Self;
}Expand description
Trait for layering a image ontop of another, with a offset to the second image.
Required Methods§
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.