pub trait TrimTrailingZeros {
type Output;
// Required method
fn trim_trailing_zeros(self) -> Self::Output;
}Expand description
Gets rid of all zeros until it hits a one.
pub trait TrimTrailingZeros {
type Output;
// Required method
fn trim_trailing_zeros(self) -> Self::Output;
}Gets rid of all zeros until it hits a one.