-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
Fix Rust docs build #1271
Fix Rust docs build #1271
Conversation
Fixes #1270
Just wondering if |
That alone will not fix this particular issue, I'd recommend this (+ |
Ok, how good is this?
|
Yeah, you'll have to fix warnings now. Those are actual links to other data structures. You can replace
with just
So it is not a link anymore. Or make it a proper link like in a second warning, but make sure path to data structure is correct. |
Wow, I've found a bug. I mean, docs did. |
How is possible that this fix (I didn't change ANYTHING else) doesn't make /// Callback is called when the associated data producer is resumed.
- pub fn on_producer_resume<F: Fn() + Send + Sync + 'static>(&self, callback: F) -> HandlerId {
+ pub fn on_data_producer_resume<F: Fn() + Send + Sync + 'static>(&self, callback: F) -> HandlerId {
self.inner()
.handlers
.data_producer_resume |
It is just a public method name, could be anything 🤷♂️ |
cargo is wrong here:
|
It isn't, looks like you have this:
Instead of this: |
OMG |
PR ready. Yes, an unrelated change in |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
And cargo fmt
will not hurt
Fixes #1270