xref: /tonic/tests/extern_path/uuid/src/lib.rs (revision 1b3d1072)
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