pub trait ToUnsigned {
type Output;
// Required method
fn to_unsigned(self) -> Self::Output;
}Expand description
Converts this value to the unsigned version using the as cast operation.
pub trait ToUnsigned {
type Output;
// Required method
fn to_unsigned(self) -> Self::Output;
}Converts this value to the unsigned version using the as cast operation.