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
pilota.rust_wrapper_arc
Can pilota.rust_wrapper_arc annotation support wrapper Arc like this:
struct B { 1: required list<string> a(pilota.rust_wrapper_arc="inner"), 2: required list<string> b(pilota.rust_wrapper_arc="outer"), }
Generated:
pub struct B { a: ::std::collections::Vec<::std::sync::Arc<::pilota::FastStr>>, b: ::std::sync::Arc<::std::collections::Vec<::pilota::FastStr>>, }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Feature Request
Motivation
Can
pilota.rust_wrapper_arc
annotation support wrapper Arc like this:Generated:
The text was updated successfully, but these errors were encountered: