pub trait Ulps {
type U: Copy;
// Required methods
fn ulps(&self, other: &Self) -> <Self as Ulps>::U;
fn next(&self) -> Self;
fn prev(&self) -> Self;
}
Required Associated Types§
Required Methods§
Object Safety§
This trait is not object safe.