Struct core::fmt::Radix [] [src]

pub struct Radix {
    base: u8,
}
Deprecated since 1.7.0

: not used enough to stabilize

A radix with in the range of 2..36.

Fields

base
Deprecated since 1.7.0

: not used enough to stabilize

Methods

impl Radix

fn new(base: u8) -> Radix

Trait Implementations

impl GenericRadix for Radix

fn base(&self) -> u8

fn digit(&self, x: u8) -> u8

fn prefix(&self) -> &'static str

fn fmt_int<T: Int>(&self, x: T, f: &mut Formatter) -> Result

Derived Implementations

impl PartialEq for Radix

fn eq(&self, __arg_0: &Radix) -> bool

fn ne(&self, __arg_0: &Radix) -> bool

impl Copy for Radix

impl Clone for Radix

fn clone(&self) -> Radix

fn clone_from(&mut self, source: &Self)