opencv 0.5.3

Rust bindings for OpenCV
Documentation
extern "C" {
    #[doc(hidden)] fn cv_PtrOfDetectionOutputLayer_get(ptr: *mut c_void) -> *mut c_void;
    #[doc(hidden)] fn cv_delete_PtrOfDetectionOutputLayer(ptr: *mut c_void);
}

#[allow(dead_code)]
pub struct PtrOfDetectionOutputLayer {
    pub(crate) ptr: *mut c_void
}

impl PtrOfDetectionOutputLayer {
    #[doc(hidden)] pub fn as_raw_PtrOfDetectionOutputLayer(&self) -> *mut c_void {
        self.ptr
    }
}

impl Drop for PtrOfDetectionOutputLayer {
    fn drop(&mut self) {
        unsafe { cv_delete_PtrOfDetectionOutputLayer(self.ptr) };
    }
}