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

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

impl SolidBuilder for PartialSolid {}