#[repr(C)]pub struct nk_font {
pub next: *mut nk_font,
pub handle: nk_user_font,
pub info: nk_baked_font,
pub scale: f32,
pub glyphs: *mut nk_font_glyph,
pub fallback: *const nk_font_glyph,
pub fallback_codepoint: nk_rune,
pub texture: nk_handle,
pub config: *mut nk_font_config,
}Fields§
§next: *mut nk_font§handle: nk_user_font§info: nk_baked_font§scale: f32§glyphs: *mut nk_font_glyph§fallback: *const nk_font_glyph§fallback_codepoint: nk_rune§texture: nk_handle§config: *mut nk_font_configTrait Implementations§
Auto Trait Implementations§
impl Freeze for nk_font
impl RefUnwindSafe for nk_font
impl !Send for nk_font
impl !Sync for nk_font
impl Unpin for nk_font
impl UnwindSafe for nk_font
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