[][src]Struct scaly::memory::pool::Pool

pub struct Pool {
    pub map: usize,
    // some fields omitted
}

Fields

map: usize

Methods

impl Pool[src]

pub fn create(heap: *mut Heap) -> *mut Pool[src]

pub fn allocate_page(&mut self) -> *mut Page[src]

pub fn mark_as_full(&mut self, page: usize)[src]

pub fn mark_as_free(&mut self, page: usize)[src]

pub fn deallocate(&mut self)[src]

Auto Trait Implementations

impl Unpin for Pool

impl !Send for Pool

impl !Sync for Pool

impl RefUnwindSafe for Pool

impl UnwindSafe for Pool

Blanket Implementations

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

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

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.

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

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

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