#[repr(C)]pub struct dmArray<T> {
pub m_Front: *mut T,
pub m_End: *mut T,
pub m_Back: *mut T,
pub _bitfield_align_1: [u8; 0],
pub _bitfield_1: __BindgenBitfieldUnit<[u8; 1]>,
pub _phantom_0: PhantomData<UnsafeCell<T>>,
}Fields§
§m_Front: *mut T§m_End: *mut T§m_Back: *mut T§_bitfield_align_1: [u8; 0]§_bitfield_1: __BindgenBitfieldUnit<[u8; 1]>§_phantom_0: PhantomData<UnsafeCell<T>>Implementations§
Source§impl<T> dmArray<T>
impl<T> dmArray<T>
pub fn m_UserAllocated(&self) -> u16
pub fn set_m_UserAllocated(&mut self, val: u16)
pub fn new_bitfield_1(m_UserAllocated: u16) -> __BindgenBitfieldUnit<[u8; 1]>
Trait Implementations§
Auto Trait Implementations§
impl<T> Freeze for dmArray<T>
impl<T> !RefUnwindSafe for dmArray<T>
impl<T> !Send for dmArray<T>
impl<T> !Sync for dmArray<T>
impl<T> Unpin for dmArray<T>where
T: Unpin,
impl<T> UnwindSafe for dmArray<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