1pub trait Level {} 2 3pub struct First; 4impl Level for First {} 5 6pub struct Second; 7impl Level for Second {} 8 9pub struct Third; 10impl Level for Third {} 11 12pub struct Fourth; 13impl Level for Fourth {}