You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As the title says. I believe it fails to find enums where some variants contain braces, like Concluded in this example:
pubenumFromPool{/// 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),}
The text was updated successfully, but these errors were encountered:
As the title says. I believe it fails to find enums where some variants contain braces, like
Concluded
in this example:The text was updated successfully, but these errors were encountered: