usetraitful::seal;// Make it so that only cats and cat-people can meow
#[seal(Cat, CatPerson)]pubtraitMeow{fnmeow(){println!("meow");}}pubstructCat;implMeow forCat{}pubstructCatPerson;// Will fail to compile if this line is commented out
implMeow forCatPerson{}