pub trait SdfIteratorCombinationOperations<Scalar: Float, State: SdfState<Scalar, DIM>, const DIM: usize>: Sized{
// Provided methods
fn union(self) -> UnionIterator<Self, Scalar, State, DIM> { ... }
fn inter(self) -> IntersectionIterator<Self, Scalar, State, DIM> { ... }
}Provided Methods§
fn union(self) -> UnionIterator<Self, Scalar, State, DIM>
fn inter(self) -> IntersectionIterator<Self, Scalar, State, DIM>
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.