pub trait Hull<T: ?Sized> {
type Output;
// Required method
fn hull_with(&self, other: &T) -> Self::Output;
}Expand description
Trait for computing the convex hull (bounding interval) of two values.
Required Associated Types§
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".