pub trait ColorStopsSource {
// Required method
fn collect_stops(self, stops: &mut ColorStops);
}
Expand description
Trait for types that represent a source of color stops.
Required Methods§
Sourcefn collect_stops(self, stops: &mut ColorStops)
fn collect_stops(self, stops: &mut ColorStops)
Append the stops represented within self
into stops
.