Advertisement
Guest User

Untitled

a guest
May 26th, 2019
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.13 KB | None | 0 0
  1. use termion::color::{Color, Rgb};
  2.  
  3. fn main() {
  4. let color = Some(Rgb(1, 2, 3));
  5. let color: Option<&Color> = color.as_ref();
  6. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement