pub struct GlyphBitmap {
pub width: usize,
pub height: usize,
pub left: i32,
pub top: i32,
pub data: Vec<u8>,
}
Fields§
§width: usize
§height: usize
§left: i32
§top: i32
§data: Vec<u8>
Auto Trait Implementations§
impl Freeze for GlyphBitmap
impl RefUnwindSafe for GlyphBitmap
impl Send for GlyphBitmap
impl Sync for GlyphBitmap
impl Unpin for GlyphBitmap
impl UnwindSafe for GlyphBitmap
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