1 include!(concat!(env!("OUT_DIR"), "/uuid.rs")); 2 3 pub trait DoSomething { do_it(&self) -> String4 fn do_it(&self) -> String; 5 } 6 7 impl DoSomething for Uuid { do_it(&self) -> String8 fn do_it(&self) -> String { 9 "Done".to_string() 10 } 11 } 12