pub trait BlendingOverlayAt<W> {
// Required method
unsafe fn overlay_blended_at(
&mut self,
with: &W,
x: u32,
y: u32,
) -> &mut Self;
}Expand description
Blending overlay at.
Required Methods§
Sourceunsafe fn overlay_blended_at(&mut self, with: &W, x: u32, y: u32) -> &mut Self
unsafe fn overlay_blended_at(&mut self, with: &W, x: u32, y: u32) -> &mut Self
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.