[][src]Struct bmk_linux::resultarray::ResultArray

pub struct ResultArray<T: Sized> { /* fields omitted */ }

A pre-allocated, mlocked, and prefaulted array of the given size and type for storing results. This is useful to the storage of results from interfering with measurements.

Methods

impl<T: Sized> ResultArray<T>[src]

pub fn new(cap: usize) -> Self[src]

Create a new ResultArray with the given number of elements.

Panics

  • If unable to create the array.
  • If the size of the array is not a multiple of the page size.
  • If the length of the array is longer than isize::MAX.

pub fn iter(&self) -> Iter<T>[src]

Returns an iterator over only pushed elements.

pub fn push(&mut self, item: T)[src]

Push the item to the end of the array.

Panics

if the array is full.

Trait Implementations

impl<T: Sized> Drop for ResultArray<T>[src]

Auto Trait Implementations

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

impl<T> !Send for ResultArray<T>

impl<T> !Sync for ResultArray<T>

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

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