Struct executorch_sys::executorch_rs::RawVec
source · #[repr(C)]pub struct RawVec<T> {
pub data: *mut T,
pub len: usize,
pub cap: usize,
pub _phantom_0: PhantomData<UnsafeCell<T>>,
}Fields§
§data: *mut T§len: usize§cap: usize§_phantom_0: PhantomData<UnsafeCell<T>>Trait Implementations§
Auto Trait Implementations§
impl<T> Freeze for RawVec<T>
impl<T> !RefUnwindSafe for RawVec<T>
impl<T> !Send for RawVec<T>
impl<T> !Sync for RawVec<T>
impl<T> Unpin for RawVec<T>where
T: Unpin,
impl<T> UnwindSafe for RawVec<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