1
2
3
4
5
6
7
8
9
use crate::partial::PartialSketch;

/// Builder API for [`PartialSketch`]
pub trait SketchBuilder {
    // No methods are currently defined. This trait serves as a placeholder, to
    // make it clear where to add such methods, once necessary.
}

impl SketchBuilder for PartialSketch {}