#[repr(C)]pub struct tree {
pub leaf: *mut c_int,
pub n: c_int,
pub parent: *mut c_int,
pub child: *mut c_int,
pub group: *mut c_int,
pub name: *mut *mut c_char,
pub groups: c_int,
pub group_size: *mut c_int,
pub group_offset: *mut c_int,
}Fields§
§leaf: *mut c_int§n: c_int§parent: *mut c_int§child: *mut c_int§group: *mut c_int§name: *mut *mut c_char§groups: c_int§group_size: *mut c_int§group_offset: *mut c_intTrait Implementations§
Auto Trait Implementations§
impl !Send for tree
impl !Sync for tree
impl Freeze for tree
impl RefUnwindSafe for tree
impl Unpin for tree
impl UnsafeUnpin for tree
impl UnwindSafe for tree
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