#[repr(C)]pub struct r_stack_t {
pub elems: *mut *mut c_void,
pub n_elems: c_uint,
pub top: c_int,
pub free: RStackFree,
}
Fields§
§elems: *mut *mut c_void
§n_elems: c_uint
§top: c_int
§free: RStackFree
Trait Implementations§
Auto Trait Implementations§
impl Freeze for r_stack_t
impl RefUnwindSafe for r_stack_t
impl !Send for r_stack_t
impl !Sync for r_stack_t
impl Unpin for r_stack_t
impl UnwindSafe for r_stack_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