pub enum Lump {
Palette(Box<Palette>),
StatusBar(Image),
MipTexture(MipTexture),
Flat(Box<[u8]>),
}
Expand description
Enum w/ variants for each known lump kind
Variants§
Implementations§
Trait Implementations§
impl Eq for Lump
impl StructuralPartialEq for Lump
Auto Trait Implementations§
impl Freeze for Lump
impl RefUnwindSafe for Lump
impl Send for Lump
impl Sync for Lump
impl Unpin for Lump
impl UnwindSafe for Lump
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more