Struct object_lib::collections::fixed_pvec::FixedPVec
source · #[repr(C)]pub struct FixedPVec<T> {
size: usize,
buf: PVec<T>,
}Fields§
§size: usize§buf: PVec<T>Implementations§
source§impl<T> FixedPVec<T>where
T: Persistable,
impl<T> FixedPVec<T>where T: Persistable,
Trait Implementations§
source§impl<T> Persistable for FixedPVec<T>where
T: Persistable,
impl<T> Persistable for FixedPVec<T>where T: Persistable,
source§impl<T> PersistentlyAllocatable for FixedPVec<T>where
T: Persistable,
impl<T> PersistentlyAllocatable for FixedPVec<T>where T: Persistable,
fn set_allocator(&mut self, allocator: Arc<RwLock<BumpAllocator>>)
fn get_allocator(&self) -> Option<Arc<RwLock<BumpAllocator>>>
Auto Trait Implementations§
impl<T> !RefUnwindSafe for FixedPVec<T>
impl<T> Send for FixedPVec<T>where T: Send,
impl<T> Sync for FixedPVec<T>where T: Sync,
impl<T> Unpin for FixedPVec<T>where T: Unpin,
impl<T> !UnwindSafe for FixedPVec<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