#[repr(C)]pub struct ImVector<T> {
pub _phantom_0: PhantomData<UnsafeCell<T>>,
pub Size: c_int,
pub Capacity: c_int,
pub Data: *mut T,
}Fields§
§_phantom_0: PhantomData<UnsafeCell<T>>§Size: c_int§Capacity: c_int§Data: *mut TTrait Implementations§
impl<T: Eq> Eq for ImVector<T>
impl<T> StructuralPartialEq for ImVector<T>
Auto Trait Implementations§
impl<T> Freeze for ImVector<T>
impl<T> !RefUnwindSafe for ImVector<T>
impl<T> !Send for ImVector<T>
impl<T> !Sync for ImVector<T>
impl<T> Unpin for ImVector<T>where
T: Unpin,
impl<T> UnwindSafe for ImVector<T>where
T: RefUnwindSafe + UnwindSafe,
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