Uh oh!
There was an error while loading. Please reload this page.
doc: Update std and extra crate docs - #7176
Closed
brson wants to merge 1 commit into
Closed
Conversation
Contributor
There was a problem hiding this comment.
I think defining would work better than that define.
ContributorAuthor
There was a problem hiding this comment.
Updated. Thanks for review.
Fix a few inaccuracies and bring things more up to date.
kud1ing
commented
Jun 17, 2013
Do we want the Sqlite-bindings in |
rkbodenner
commented
Jun 17, 2013
Contributor
Saw this PR after I'd submitted #7197, so I updated mine with your text changes (it adds a few more small fixes). |
brson
commented
Jun 17, 2013
ContributorAuthor
Ok closing this. @kud1ing I don't want to pull in any new dependencies right now. Eventually I hope that extra gets broken up into individual packages, some of them granted 'supported' status, some not. Once we have that infrastructure we can start making guarantees about supported sqlite bindings, etc. |
flip1995 pushed a commit
to flip1995/rust
that referenced
this pull request
May 20, 2021
…r=llogiq New lint: `unused_async` changelog: Adds a lint, `unused_async`, which checks for async functions with no await statements `unused_async` is a lint that reduces code smell and overhead by encouraging async functions to be refactored into synchronous functions. Fixesrust-lang#7176 ### Examples ```rust async fn get_random_number() -> i64 { 4 // Chosen by fair dice roll. Guaranteed to be random. } ``` Could be written as: ```rust fn get_random_number() -> i64 { 4 // Chosen by fair dice roll. Guaranteed to be random. } ``` Something like this, however, should **not** be caught by clippy: ```rust #[async_trait] trait AsyncTrait { async fn foo(); } struct Bar; #[async_trait] impl AsyncTrait for Bar { async fn foo() { println!("bar"); } } ```
U007D pushed a commit
to U007D/rust-mos
that referenced
this pull request
Aug 21, 2026
7176: Attribute completion r=matklad a=FlowerBOII Solve rust-lang#7167. I removed the optional args for the attributes ```deprecated```, ```must_use``` and ```should_panic```. I also updated their respective tests. Please let me know if I missed something. Co-authored-by: FlowerBOII <42295129+FlowerBOII@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for freeto join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Fix a few inaccuracies and bring things more up to date.