Skip to content
New issue

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

Failing to find some Rust enums #444

Open
mrcnski opened this issue Nov 26, 2023 · 0 comments
Open

Failing to find some Rust enums #444

mrcnski opened this issue Nov 26, 2023 · 0 comments

Comments

@mrcnski
Copy link

mrcnski commented Nov 26, 2023

As the title says. I believe it fails to find enums where some variants contain braces, like Concluded in this example:

pub enum FromPool {
    /// The given worker was just spawned and is ready to be used.
    Spawned(Worker),

    /// The given worker either succeeded or failed the given job.
    Concluded {
        /// A key for retrieving the worker data from the pool.
        worker: Worker,
        /// Indicates whether the worker process was killed.
        rip: bool,
        /// [`Ok`] indicates that compiled artifact is successfully stored on disk.
        /// Otherwise, an [error](PrepareError) is supplied.
        result: PrepareResult,
    },

    /// The given worker ceased to exist.
    Rip(Worker),
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant