pub trait RenderAttachmentBuild {
// Required methods
fn clear_impl(self, r: f64, g: f64, b: f64, a: f64) -> Self;
fn clear(self) -> Self;
fn clear_black(self) -> Self;
fn clear_white(self) -> Self;
fn clear_color(self, color: u32) -> Self;
fn readonly(self) -> Self;
}Required Methods§
fn clear_impl(self, r: f64, g: f64, b: f64, a: f64) -> Self
fn clear(self) -> Self
fn clear_black(self) -> Self
fn clear_white(self) -> Self
fn clear_color(self, color: u32) -> Self
fn readonly(self) -> 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.