Tuple-Like
A struct with components, which can be identified by their index
Example
// pub is optional
pub struct Bounds(pub usize, pub usize);
let image_bounds = Bounds(1024, 768);A struct with components, which can be identified by their index
// pub is optional
pub struct Bounds(pub usize, pub usize);
let image_bounds = Bounds(1024, 768);