#[repr(C)]pub struct pm_constant_id_list_t {
pub size: usize,
pub capacity: usize,
pub ids: *mut pm_constant_id_t,
}
Expand description
A list of constant IDs. Usually used to represent a set of locals.
Fields§
§size: usize
The number of constant ids in the list.
capacity: usize
The number of constant ids that have been allocated in the list.
ids: *mut pm_constant_id_t
The constant ids in the list.
Trait Implementations§
Source§impl Clone for pm_constant_id_list_t
impl Clone for pm_constant_id_list_t
Source§fn clone(&self) -> pm_constant_id_list_t
fn clone(&self) -> pm_constant_id_list_t
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for pm_constant_id_list_t
impl Debug for pm_constant_id_list_t
Source§impl Default for pm_constant_id_list_t
impl Default for pm_constant_id_list_t
impl Copy for pm_constant_id_list_t
Auto Trait Implementations§
impl Freeze for pm_constant_id_list_t
impl RefUnwindSafe for pm_constant_id_list_t
impl !Send for pm_constant_id_list_t
impl !Sync for pm_constant_id_list_t
impl Unpin for pm_constant_id_list_t
impl UnwindSafe for pm_constant_id_list_t
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