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
fruity
Deref
objc2-foundation
objc2::foundation
NSObject
Object
lib.rs
README.md
docs.rs
build.rs
objc-sys
doc(cfg)
doc_auto_cfg
notable_traits
rustbook
icrate
rustdoc
#![warn(rustdoc::missing_doc_code_examples)]
objc
Also a few missing from the API Guide checklist:
?
try!
unwrap
The text was updated successfully, but these errors were encountered:
Another todo: Use #![warn(clippy::undocumented_unsafe_blocks, clippy::multiple_unsafe_ops_per_block)].
#![warn(clippy::undocumented_unsafe_blocks, clippy::multiple_unsafe_ops_per_block)]
Sorry, something went wrong.
No branches or pull requests
fruity
's for inspiration). Done in Document our goals #79Deref
inobjc2-foundation
, since it conflicts with most guidelines, see the entry in the API guidelines and the (anti-pattern) entry in "Rust Design Patterns"objc2::foundation
assumes that most things areNSObject
instead of justObject
, since that is what the rest of Cocoa does anywaylib.rs
vs.README.md
(see README guidelines rust-lang/api-guidelines#254)docs.rs
configuration -> Maybe somebuild.rs
configuration needed forobjc-sys
. Done in Fix docs.rs setup #89 and Setdocs.rs
targets on all crates #160doc(cfg)
attributes to document platform-specific APIs? Done in Usedoc_auto_cfg
on docs.rs #195Use unstable documentation features where relevant.Only relevant wasnotable_traits
, and I didn't really find that very useful.rustbook
with a helpful introduction on how to use the libraries?icrate
#494rustdoc
documentation and get tips from that.#![warn(rustdoc::missing_doc_code_examples)]
?objc
Also a few missing from the API Guide checklist:
?
, nottry!
, notunwrap
(C-QUESTION-MARK)The text was updated successfully, but these errors were encountered: