[][src]Struct ring_vec::RingVec

pub struct RingVec<T: Debug> { /* fields omitted */ }

Implementations

impl<T: Debug> RingVec<T>[src]

pub fn new(capacity: usize) -> RingVec<T>[src]

Creates an empty RingVec

pub fn new_preallocated(capacity: usize) -> RingVec<T>[src]

Creates an empty RingVec with preallocated storage

pub fn is_full(&self) -> bool[src]

True if there is no spare capacity

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

Returns the number of items in the RingVec

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

Returns the maximum possible number of items.

pub fn peek(&self) -> Option<&T>[src]

Returns a ref to the head of the queue, if any.

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

Returns the next item in the queue, if any.

pub fn push(&mut self, item: T) -> Result<(), T>[src]

Appends an item if there is space.

pub fn empty(&mut self)[src]

Empties the RingVec, optionally shrinking the storage.

pub fn shrink_to_fit(&mut self)[src]

Attempts to reduce memory usage.

Trait Implementations

impl<T: Debug> Debug for RingVec<T>[src]

Auto Trait Implementations

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

impl<T> Send for RingVec<T> where
    T: Send

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

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

impl<T> UnwindSafe for RingVec<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.