Advertisement
Nattack

Untitled

Feb 7th, 2016
290
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Rust 0.21 KB | None | 0 0
  1. impl Display for Color {
  2.     fn fmt(&self, f: &mut Formatter) -> fmt::Result {
  3.         write!(f, "RBG ({0}, {1}, {2}) {3:#02X}{4:02X}{5:02X}", self.red, self.green, self.blue, self.red, self.green, self.blue)
  4.     }
  5. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement