[][src]Struct darknet_sys::tree

#[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_intn: c_intparent: *mut c_intchild: *mut c_intgroup: *mut c_intname: *mut *mut c_chargroups: c_intgroup_size: *mut c_intgroup_offset: *mut c_int

Trait Implementations

impl Clone for tree[src]

impl Copy for tree[src]

impl Debug for tree[src]

Auto Trait Implementations

impl RefUnwindSafe for tree

impl !Send for tree

impl !Sync for tree

impl Unpin for tree

impl UnwindSafe for tree

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.