dmArray

Struct dmArray 

Source
#[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>

Source

pub fn m_UserAllocated(&self) -> u16

Source

pub fn set_m_UserAllocated(&mut self, val: u16)

Source

pub fn new_bitfield_1(m_UserAllocated: u16) -> __BindgenBitfieldUnit<[u8; 1]>

Trait Implementations§

Source§

impl<T> Debug for dmArray<T>
where T: Debug,

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more

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>

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.