We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
smoosh crate in m-c is currently copying jsparagus's EmitResult into SmooshResult, for the following reasons:
EmitResult
SmooshResult
#[repr(C)]
Vec<T>
CVec<T>
Option<T>
The text was updated successfully, but these errors were encountered:
No branches or pull requests
smoosh crate in m-c is currently copying jsparagus's
EmitResult
intoSmooshResult
, for the following reasons:#[repr(C)]
, andEmitResult
doesn't have itVec<T>
intoCVec<T>
Vec<T>
can be exposed to C, orOption<T>
needs some conversion, or type definitionenum variant needs some conversion, or accessorThe text was updated successfully, but these errors were encountered: