1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
#[repr(C)]
#[derive(Clone, Default)]
pub struct Result {
    _private: [u8; 0],
}

impl Result {
    pub fn new() -> Self {
        Self { _private: [] }
    }
}