pub struct Header {
pub magic: [u8; 4],
pub version: u32,
pub size: u32,
pub flags: u32,
pub length: u32,
pub glyph_size: u32,
pub glyph_height: u32,
pub glyph_width: u32,
}
Expand description
The font header.
Fields§
§magic: [u8; 4]
§version: u32
§size: u32
§flags: u32
§length: u32
§glyph_size: u32
§glyph_height: u32
§glyph_width: u32
Trait Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for Header
impl Send for Header
impl Sync for Header
impl Unpin for Header
impl UnwindSafe for Header
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