pub trait SymbolicPaintableImpl: PaintableImpl + ObjectSubclass<Type: IsA<SymbolicPaintable>> {
// Provided methods
fn snapshot_symbolic(
&self,
snapshot: &Snapshot,
width: f64,
height: f64,
colors: &[RGBA],
) { ... }
fn snapshot_with_weight(
&self,
snapshot: &Snapshot,
width: f64,
height: f64,
colors: &[RGBA],
weight: f64,
) { ... }
}Available on crate feature
v4_6 only.Provided Methods§
fn snapshot_symbolic( &self, snapshot: &Snapshot, width: f64, height: f64, colors: &[RGBA], )
fn snapshot_with_weight( &self, snapshot: &Snapshot, width: f64, height: f64, colors: &[RGBA], weight: f64, )
Available on crate feature
v4_22 only.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.