1#[derive(Debug, Clone)] 2pub enum Target { 3 Bin(String), 4 Example(String), 5 Lib, 6} 7 8pub trait IntoRustTriple { 9 /// Returns the triple used by the rust build tools. 10 fn rust_triple(&self) -> &'static str; 11}