[][src]Struct pq_bincode::PQBincode

pub struct PQBincode<T> where
    T: IBincodeSerializable
{ /* fields omitted */ }

Implementations

impl<T> PQBincode<T> where
    T: IBincodeSerializable
[src]

pub fn new<S: AsRef<Path> + ToString>(path: S) -> IOResult<Self>[src]

pub fn enqueue(&mut self, data: T) -> IOResult<()>[src]

pub fn enqueue_all(&mut self, data: Vec<T>) -> IOResult<()>[src]

pub fn dequeue(&mut self) -> IOResult<Option<T>>[src]

pub fn dequeue_all(&mut self) -> IOResult<Vec<T>>[src]

pub fn cancellable_dequeue<F>(
    &mut self,
    doubtful_dequeue_task: F
) -> IOResult<bool> where
    F: FnOnce(T) -> bool
[src]

pub fn count(&self) -> usize[src]

pub fn get_persistent_path(&self) -> String[src]

Auto Trait Implementations

impl<T> RefUnwindSafe for PQBincode<T> where
    T: RefUnwindSafe

impl<T> Send for PQBincode<T>

impl<T> Sync for PQBincode<T> where
    T: Sync

impl<T> Unpin for PQBincode<T> where
    T: Unpin

impl<T> UnwindSafe for PQBincode<T> where
    T: UnwindSafe

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, 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.