Currently structures to wrap a tuple are not allowed : For exemple : ```rust struct MyNum(usize) fn main() { let x = MyNum(3); let y = x.0; } ```