pub struct Static {
pub size: u16,
pub trigger: u16,
pub width: u16,
pub height: u16,
pub rows: Vec<StaticRow>,
}Expand description
A static image, typically used to render props
Fields§
§size: u16The number of bytes this static is stored as
trigger: u16Trigger information. Yet unknown what this represents
width: u16The width of the image
height: u16The height of the image
rows: Vec<StaticRow>The image data
Trait Implementations§
impl Eq for Static
impl StructuralPartialEq for Static
Auto Trait Implementations§
impl Freeze for Static
impl RefUnwindSafe for Static
impl Send for Static
impl Sync for Static
impl Unpin for Static
impl UnsafeUnpin for Static
impl UnwindSafe for Static
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