pub trait IsFinite: Sized + Copy {
    fn is_finite(self) -> bool;
}

Required methods

Implementations on Foreign Types

Implementors