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
concatenate!
Hi,
I'd like to use concatenate!() and obtain a a public type, but I could not find a way. Do you envision a simple way to do this?
concatenate!()
Thanks
The text was updated successfully, but these errors were encountered:
The easiest workaround would be to use the newtype pattern to define a public type:
concatenate!(PrivateEstimator, ...); pub struct PublicEstimator(PrivateEstimator);
However, this will result in quite a bit of boilerplate code. I'll consider extending concatenate! to support creating a public type.
Sorry for the late reply!
Sorry, something went wrong.
@vks hey! Would be great to have this feature as well =) It seems like @hatoo's pr #28 do the right thing. Could you please check?
I just published version 0.15.1, which includes this feature.
Successfully merging a pull request may close this issue.
Hi,
I'd like to use
concatenate!()
and obtain a a public type, but I could not find a way.Do you envision a simple way to do this?
Thanks
The text was updated successfully, but these errors were encountered: