1 2 3 4 5 6 7 8
/// Named data inside a Wad/Clod. pub trait Clump { /// An immutable reference to the name. fn name(&self) -> &String; /// An immutable reference to the contents. fn bytestuff(&self) -> &Box<[u8]>; }