[][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 Clone for nk_pool[src]

impl Copy for nk_pool[src]

impl Default for nk_pool[src]

Auto Trait Implementations

impl RefUnwindSafe for nk_pool

impl !Send for nk_pool

impl !Sync for nk_pool

impl Unpin for nk_pool

impl UnwindSafe for nk_pool

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

impl<T, U> Into<U> 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, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.