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