tuple struct with lifetime parameter
//Tuple struct example with lifetime parameter
#[derive(Debug)]
struct Item<'a>(&'a str, f32);
fn main(){
let f = Item("foo", 3 as f32);
println!("This is an item {:?}", f);
//This is an item Item("foo", 3)
}