1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
use std::fmt::{Debug, Binary, LowerHex, Octal, LowerExp, Pointer};

pub trait BinaryDisplay {
    /// ```
    /// use to_string::BinaryDisplay;
    /// assert_eq!("0b0", 0.to_binary_string())
    /// ```
    fn to_binary_string(&self) -> String;
    /// ```
    /// use to_string::BinaryDisplay;
    /// assert_eq!("0b0", 0.to_bin())
    /// ```
    fn to_bin(&self) -> String { self.to_binary_string() }
}

impl<T : Binary> BinaryDisplay for T {
    fn to_binary_string(&self) -> String {
        format!("{:#b}", self)
    }
}

pub trait HexaDisplay {
    /// ```
    /// use to_string::HexaDisplay;
    /// assert_eq!("0x12", 0x12.to_hexa_string());
    /// assert_eq!("0xffffffee", (-0x12).to_hexa_string())
    /// ```
    fn to_hexa_string(&self) -> String;
    /// ```
    /// use to_string::HexaDisplay;
    /// assert_eq!("0x12", 0x12.to_hexa());
    /// assert_eq!("0xffffffee", (-0x12).to_hexa())
    /// ```
    fn to_hexa(&self) -> String { self.to_hexa_string() }
}

impl<T : LowerHex> HexaDisplay for T {
    fn to_hexa_string(&self) -> String {
        format!("{:#x}", self)
    }
}

pub trait OctalDisplay {
    /// ```
    /// use to_string::OctalDisplay;
    /// assert_eq!("0o12", 0o12.to_octal_string())
    /// ```
    fn to_octal_string(&self) -> String;
    /// ```
    /// use to_string::OctalDisplay;
    /// assert_eq!("0o12", 0o12.to_octal())
    /// ```
    fn to_octal(&self) -> String { self.to_octal_string() }

}

impl<T : Octal> OctalDisplay for T {
    fn to_octal_string(&self) -> String {
        format!("{:#o}", self)
    }
}

pub trait ExpDisplay {
    /// ```
    /// use to_string::ExpDisplay;
    /// assert_eq!("4.21e1", (42.1).to_exp_string())
    /// ```
    fn to_exp_string(&self) -> String;
    /// ```
    /// use to_string::ExpDisplay;
    /// assert_eq!("4.21e1", (42.1).to_exp())
    /// ```
    fn to_exp(&self) -> String { self.to_exp_string() }
}

impl<T : LowerExp> ExpDisplay for T {
    fn to_exp_string(&self) -> String {
        format!("{:#e}", self)
    }
}

pub trait PointerDisplay {
    /// ```
    /// use to_string::PointerDisplay;
    /// let val = 12;
    /// println!("{}", (&val).to_pointer()) // something like "0x00007fff5af30fa8"
    /// ```
    fn to_pointer_string(&self) -> String;
    /// ```
    /// use to_string::PointerDisplay;
    /// let val = 12;
    /// println!("{}", (&val).to_pointer()) // something like "0x00007fff5af30fa8"
    /// ```
    fn to_pointer(&self) -> String { self.to_pointer_string() }
}

impl<T : Pointer> PointerDisplay for T {
    fn to_pointer_string(&self) -> String {
        format!("{:#p}", self)
    }
}

pub trait DebugDisplay {
    /// ```
    /// use to_string::DebugDisplay;
    /// assert_eq!("12", 12.to_debug_string())
    /// ```
    fn to_debug_string(&self) -> String;
    /// ```
    /// use to_string::DebugDisplay;
    /// assert_eq!("12", 12.to_debug_string())
    /// ```
    fn to_debug(&self) -> String { self.to_debug_string() }
}

impl<T : Debug> DebugDisplay for T {
    fn to_debug_string(&self) -> String {
        format!("{:#?}", self)
    }
}