#[repr(C)]pub struct nk_font_atlas {Show 13 fields
pub pixel: *mut c_void,
pub tex_width: c_int,
pub tex_height: c_int,
pub permanent: nk_allocator,
pub temporary: nk_allocator,
pub custom: nk_recti,
pub cursors: [nk_cursor; 7],
pub glyph_count: c_int,
pub glyphs: *mut nk_font_glyph,
pub default_font: *mut nk_font,
pub fonts: *mut nk_font,
pub config: *mut nk_font_config,
pub font_num: c_int,
}Fields§
§pixel: *mut c_void§tex_width: c_int§tex_height: c_int§permanent: nk_allocator§temporary: nk_allocator§custom: nk_recti§cursors: [nk_cursor; 7]§glyph_count: c_int§glyphs: *mut nk_font_glyph§default_font: *mut nk_font§fonts: *mut nk_font§config: *mut nk_font_config§font_num: c_intTrait Implementations§
Source§impl Clone for nk_font_atlas
impl Clone for nk_font_atlas
Source§fn clone(&self) -> nk_font_atlas
fn clone(&self) -> nk_font_atlas
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Default for nk_font_atlas
impl Default for nk_font_atlas
impl Copy for nk_font_atlas
Auto Trait Implementations§
impl Freeze for nk_font_atlas
impl RefUnwindSafe for nk_font_atlas
impl !Send for nk_font_atlas
impl !Sync for nk_font_atlas
impl Unpin for nk_font_atlas
impl UnwindSafe for nk_font_atlas
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