[][src]Struct darknet_sys::data

#[repr(C)]pub struct data {
    pub w: c_int,
    pub h: c_int,
    pub X: matrix,
    pub y: matrix,
    pub shallow: c_int,
    pub num_boxes: *mut c_int,
    pub boxes: *mut *mut box_,
}

Fields

w: c_inth: c_intX: matrixy: matrixshallow: c_intnum_boxes: *mut c_intboxes: *mut *mut box_

Trait Implementations

impl Clone for data[src]

impl Copy for data[src]

impl Debug for data[src]

Auto Trait Implementations

impl RefUnwindSafe for data

impl !Send for data

impl !Sync for data

impl Unpin for data

impl UnwindSafe for data

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.