[][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>,
    size: usize
) -> Result<Self, ()>
[src]

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

pub fn update_by_rawkey(&self, rkey: ObjRawKey, data: &[u8])[src]

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

pub unsafe fn get(&self, key: u64, buf: &mut [u8])[src]

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

Trait Implementations

impl Drop for ObjPool[src]

Auto Trait Implementations

impl !Send for ObjPool

impl !Sync for ObjPool

Blanket Implementations

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

impl<T> From<T> for 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]