pub trait UintConvert<T> {
// Required method
fn convert_into(&self) -> (T, bool);
}
Required Methods§
Sourcefn convert_into(&self) -> (T, bool)
fn convert_into(&self) -> (T, bool)
Convert a fixed uint into another, return the new fixed uint and if it be truncated.