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
This is a central issue for this project and should never be closed - it is intended to be a living document tracking this library's status in terms of its following the Rust community's generally-accepted best practices.
I plan on going through this thoroughly and creating child issues once this project is close to a v1.0.0 full release.
If you find an issue, or feel like any of these guidelines could be better followed
From rust-lang/api-guidelines https://rust-lang.github.io/api-guidelines/
This is a central issue for this project and should never be closed - it is intended to be a living document tracking this library's status in terms of its following the Rust community's generally-accepted best practices.
I plan on going through this thoroughly and creating child issues once this project is close to a v1.0.0 full release.
If you find an issue, or feel like any of these guidelines could be better followed
Please reply to this issue!
Checklist
as_
,to_
,into_
conventions (C-CONV)iter
,iter_mut
,into_iter
(C-ITER)Copy
,Clone
,Eq
,PartialEq
,Ord
,PartialOrd
,Hash
,Debug
,Display
,Default
From
,AsRef
,AsMut
(C-CONV-TRAITS)FromIterator
andExtend
(C-COLLECT)Serialize
,Deserialize
(C-SERDE)Send
andSync
where possible (C-SEND-SYNC)Hex
,Octal
,Binary
formatting (C-NUM-FMT)R: Read
andW: Write
by value (C-RW-VALUE)?
, nottry!
, notunwrap
(C-QUESTION-MARK)readme, keywords, categories
Deref
andDerefMut
(C-DEREF)bool
orOption
(C-CUSTOM-TYPE)bitflags
, not enums (C-BITFLAG)Debug
(C-DEBUG)Debug
representation is never empty (C-DEBUG-NONEMPTY)The text was updated successfully, but these errors were encountered: