You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
My code needs to generate new type aliases for a large native library. I can easily do it by prefix, e.g. "VCL_.*", but some matching typedefs break because neither Copy nor Clone are implemented for c_void.
// Generated code#[repr(transparent)]#[derive(Debug,Copy,Clone)]// <--- ERROR - c_void does not implement Copy or ClonepubstructMY_VOID(pub::std::os::raw::c_void);
The text was updated successfully, but these errors were encountered:
My code needs to generate new type aliases for a large native library. I can easily do it by prefix, e.g.
"VCL_.*"
, but some matching typedefs break because neither Copy nor Clone are implemented forc_void
.The text was updated successfully, but these errors were encountered: