[][src]Struct nuklear_sys::nk_pool

#[repr(C)]
pub struct nk_pool { pub alloc: nk_allocator, pub type_: nk_allocation_type, pub page_count: c_uint, pub pages: *mut nk_page, pub freelist: *mut nk_page_element, pub capacity: c_uint, pub size: nk_size, pub cap: nk_size, }

Fields

alloc: nk_allocatortype_: nk_allocation_typepage_count: c_uintpages: *mut nk_pagefreelist: *mut nk_page_elementcapacity: c_uintsize: nk_sizecap: nk_size

Trait Implementations

impl Copy for nk_pool[src]

impl Default for nk_pool[src]

impl Clone for nk_pool[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl !Send for nk_pool

impl !Sync for nk_pool

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.