#[repr(C)]pub struct ImPool<T> {
pub _phantom_0: PhantomData<UnsafeCell<T>>,
pub Buf: ImVector<T>,
pub Map: ImGuiStorage,
pub FreeIdx: ImPoolIdx,
pub AliveCount: ImPoolIdx,
}Fields§
§_phantom_0: PhantomData<UnsafeCell<T>>§Buf: ImVector<T>§Map: ImGuiStorage§FreeIdx: ImPoolIdx§AliveCount: ImPoolIdxAuto Trait Implementations§
impl<T> Freeze for ImPool<T>
impl<T> !RefUnwindSafe for ImPool<T>
impl<T> !Send for ImPool<T>
impl<T> !Sync for ImPool<T>
impl<T> Unpin for ImPool<T>where
T: Unpin,
impl<T> UnwindSafe for ImPool<T>where
T: UnwindSafe + RefUnwindSafe,
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