pub trait FillOutput: PineOutput {
// Required methods
fn add_fill(&mut self, fill: FillObject);
fn fills(&self) -> &[FillObject];
}Expand description
Extension trait for recording fill(...) areas.
Required Methods§
fn add_fill(&mut self, fill: FillObject)
fn fills(&self) -> &[FillObject]
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".