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
This does not work
#[doc = std::concat!("A", "has a", "B")] #[derive(uniffi::Enum)] pub enum A { B, }
but this does (without the derive)
#[doc = std::concat!("C", "has a", "D")] pub enum C { D, }
and this also works (using only a trivial string for the doc)
#[doc = "A has a B"] #[derive(uniffi::Enum)] pub enum A { B, }
The text was updated successfully, but these errors were encountered:
This works in 0.26, but is broken in 0.27.
Sorry, something went wrong.
Note: "does not work" is usually not very helpful. If you can it's always helpful to include the full error message you get.
The test I add in #2154 also fails on 0.26.
Doc string parsing first appeared in 0.26 here:
uniffi-rs/uniffi_macros/src/util.rs
Lines 295 to 301 in cd38cce
So yeah, that never worked since we added that.
No branches or pull requests
This does not work
but this does (without the derive)
and this also works (using only a trivial string for the doc)
The text was updated successfully, but these errors were encountered: