pub struct Gump {
pub width: u16,
pub height: u16,
pub data: Vec<Vec<GumpPair>>,
}Expand description
A user-interface element.
Fields§
§width: u16§height: u16§data: Vec<Vec<GumpPair>>Rows of RLE pairs
Implementations§
Trait Implementations§
impl Eq for Gump
impl StructuralPartialEq for Gump
Auto Trait Implementations§
impl Freeze for Gump
impl RefUnwindSafe for Gump
impl Send for Gump
impl Sync for Gump
impl Unpin for Gump
impl UnsafeUnpin for Gump
impl UnwindSafe for Gump
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