#[repr(C)]pub struct darray {
pub array: *mut c_void,
pub num: usize,
pub capacity: usize,
}
Fields§
§array: *mut c_void
§num: usize
§capacity: usize
Trait Implementations§
Source§impl Ord for darray
impl Ord for darray
Source§impl PartialOrd for darray
impl PartialOrd for darray
impl Copy for darray
impl Eq for darray
impl StructuralPartialEq for darray
Auto Trait Implementations§
impl Freeze for darray
impl RefUnwindSafe for darray
impl !Send for darray
impl !Sync for darray
impl Unpin for darray
impl UnwindSafe for darray
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