Here is my code:
pub struct BDFaceBox {
/// `index` 人脸索引值
index: c_int,
/// `center_x` 人脸中心点x坐标
center_x: c_float,
/// `center_y` 人脸中心点y坐标
center_y: c_float,
/// `width` 人脸宽度
width: c_float,
/// `height` 人脸高度
height: c_float,
/// `angle` 人脸角度
angle: c_float,
/// `score` 人脸置信度
score: c_float,
}
let face_box: [*mut BDFaceBox; 3];
How to init face_box variable