Trait digits::Radix [] [src]

pub trait Radix {
    fn binary(&self) -> Self;
fn octal(&self) -> Self;
fn decimal(&self) -> Self;
fn hex(&self) -> Self;
fn hexl(&self) -> Self; }

Default Radix type conversion for Digits

Required Methods

Convert current Digits to binary

Convert current Digits to octal

Convert current Digits to decimal

Convert current Digits to hexadecimal

Convert current Digits to lowercase hexadecimal

Implementors