Standards for crate level documentation
[ValidatingLinkDefinition](entry_definition::ValidatingLinkDefinition)
Give a broader context and avoid details.
//!
style.Explain the precise details.
///
style.Errors
, Panics
and Unsafe
when relevant.pub(crate)
for things that don't need to be completely public.# use std::path::Path; // This line will be hidden
let path = Path::new("some/path"); // This line will be visible
?
not try!
or unwrap
or expect
.cargo test
.