Trait std::num::IntConvertible

pub trait IntConvertible {
    fn to_int(&self) -> int;
    fn from_int(n: int) -> Self;
}

Required Methods

fn to_int(&self) -> int

fn from_int(n: int) -> Self