Trait cgats::PartialDiv
source · pub trait PartialDiv<Rhs: Sized>: Sized {
type Output;
// Required method
fn partial_div(&self, rhs: &Rhs) -> Option<Self::Output>;
}
Expand description
Trait to divide values that may not be compatible.
Required Associated Types§
Required Methods§
Object Safety§
This trait is not object safe.