[][src]Struct pmdk::ObjPool

pub struct ObjPool { /* fields omitted */ }

Methods

impl ObjPool[src]

pub fn new<P: AsRef<Path>, S: Into<String>>(
    path: P,
    layout: Option<S>,
    obj_size: usize,
    capacity: usize
) -> Result<Self, Error>
[src]

pub fn with_capacity<P: AsRef<Path>, S: Into<String>>(
    path: P,
    layout: Option<S>,
    obj_size: usize,
    data_type: u64,
    capacity: usize
) -> Result<(Self, ArrayQueue<ObjRawKey>), Error>
[src]

pub fn with_initial_capacity<P: AsRef<Path>, S: Into<String>>(
    path: P,
    layout: Option<S>,
    obj_size: usize,
    data_type: u64,
    capacity: usize,
    initial_capacity: usize
) -> Result<(Arc<Self>, Arc<ArrayQueue<ObjRawKey>>), Error>
[src]

pub fn pair_allocator(
    pool: &Arc<Self>,
    obj_size: usize,
    data_type: u64,
    capacity: usize
) -> ObjAllocator
[src]

pub fn with_allocator<P: AsRef<Path>, S: Into<String>>(
    path: P,
    layout: Option<S>,
    obj_size: usize,
    data_type: u64,
    capacity: usize
) -> Result<(Arc<Self>, ObjAllocator), Error>
[src]

pub fn update_by_rawkey<O>(
    &self,
    rkey: ObjRawKey,
    data: &[u8],
    offset: O
) -> Result<ObjRawKey, Error> where
    O: Into<Option<usize>>, 
[src]

pub fn put(&self, data: &[u8], data_type: u64) -> Result<ObjRawKey, Error>[src]

pub unsafe fn get_by_rawkey(&self, rkey: ObjRawKey, buf: &mut [u8]) -> ObjRawKey[src]

Trait Implementations

impl Sync for ObjPool[src]

impl Drop for ObjPool[src]

impl Send for ObjPool[src]

impl Debug for ObjPool[src]

Auto Trait Implementations

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]