pub trait CheckedTruncate<T> {
    type Output;

    // Required method
    fn checked_truncate(self, mode: RoundingMode) -> Option<Self::Output>;
}

Required Associated Types§

Required Methods§

Implementors§