pub struct EagerVector<T>{ /* private fields */ }
Expand description
Implements a variable length vector. Leaks the length rounded to the next power of two. The vector is oblivious to the access pattern.
Implementations§
Source§impl<T> EagerVector<T>
impl<T> EagerVector<T>
Trait Implementations§
Source§impl<T> Debug for EagerVector<T>
impl<T> Debug for EagerVector<T>
Auto Trait Implementations§
impl<T> Freeze for EagerVector<T>
impl<T> !RefUnwindSafe for EagerVector<T>
impl<T> !Send for EagerVector<T>
impl<T> !Sync for EagerVector<T>
impl<T> Unpin for EagerVector<T>where
T: Unpin,
impl<T> !UnwindSafe for EagerVector<T>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more