lv_std/unsafe_std/c/
raw_wrapper.rs

1pub unsafe trait RawWrapper {
2    type Target;
3    
4    unsafe fn raw(&self) -> *mut Self::Target;
5}