Rust
Rust Style Guide
Sök…
Introduktion
Anmärkningar
De officiella riktlinjerna för roststil fanns tillgängliga i rust-lang/rust
förvaret på GitHub, men de har nyligen tagits bort, i väntan på att migration till rust-lang-nursery/fmt-rfcs
förvaret. Fram tills nya riktlinjer publiceras där, bör du försöka följa riktlinjerna i rust-lang
förvaret.
Du kan använda rustfmt och clippy för att automatiskt granska din kod för stilproblem och formatera den korrekt. Dessa verktyg kan installeras med Cargo, på så sätt:
cargo install clippy
cargo install rustfmt
För att köra dem använder du:
cargo clippy
cargo fmt
mellanslag
Linjelängd
// Lines should never exceed 100 characters.
// Instead, just wrap on to the next line.
let bad_example = "So this sort of code should never really happen, because it's really hard to fit on the screen!";
Indrag
// You should always use 4 spaces for indentation.
// Tabs are discouraged - if you can, set your editor to convert
// a tab into 4 spaces.
let x = vec![1, 3, 5, 6, 7, 9];
for item in x {
if x / 2 == 3 {
println!("{}", x);
}
}
Efter spår
Bärande blanksteg i slutet av filer eller rader bör raderas.
Binära operatörer
// For clarity, always add a space when using binary operators, e.g.
// +, -, =, *
let bad=3+4;
let good = 3 + 4;
Detta gäller också i attribut, till exempel:
// Good:
#[deprecated = "Don't use my class - use Bar instead!"]
// Bad:
#[deprecated="This is broken"]
Semikolon
// There is no space between the end of a statement
// and a semicolon.
let bad = Some("don't do this!") ;
let good: Option<&str> = None;
Justera strukturfält
// Struct fields should **not** be aligned using spaces, like this:
pub struct Wrong {
pub x : i32,
pub foo: i64
}
// Instead, just leave 1 space after the colon and write the type, like this:
pub struct Right {
pub x: i32,
pub foo: i64
}
Funktionssignaturer
// Long function signatures should be wrapped and aligned so that
// the starting parameter of each line is aligned
fn foo(example_item: Bar, another_long_example: Baz,
yet_another_parameter: Quux)
-> ReallyLongReturnItem {
// Be careful to indent the inside block correctly!
}
Tandställning
// The starting brace should always be on the same line as its parent.
// The ending brace should be on its own line.
fn bad()
{
println!("This is incorrect.");
}
struct Good {
example: i32
}
struct AlsoBad {
example: i32 }
Skapa lådor
Preludier och återexport
// To reduce the amount of imports that users need, you should
// re-export important structs and traits.
pub use foo::Client;
pub use bar::Server;
Ibland använder lådor en prelude
att innehålla viktiga strukturer, precis som std::io::prelude
. Vanligtvis importeras dessa med use std::io::prelude::*;
import
Du bör beställa dina import och deklarationer så:
-
extern crate
-
use
import- Extern import från andra lådor bör komma först
- Återexport (
pub use
)
Namngivning
structs
// Structs use UpperCamelCase.
pub struct Snafucator {
}
mod snafucators {
// Try to avoid 'stuttering' by repeating
// the module name in the struct name.
// Bad:
pub struct OrderedSnafucator {
}
// Good:
pub struct Ordered {
}
}
egenskaper
// Traits use the same naming principles as
// structs (UpperCamelCase).
trait Read {
fn read_to_snafucator(&self) -> Result<(), Error>;
}
Lådor och moduler
// Modules and crates should both use snake_case.
// Crates should try to use single words if possible.
extern crate foo;
mod bar_baz {
mod quux {
}
}
Statiska variabler och konstanter
// Statics and constants use SCREAMING_SNAKE_CASE.
const NAME: &'static str = "SCREAMING_SNAKE_CASE";
Enums
// Enum types and their variants **both** use UpperCamelCase.
pub enum Option<T> {
Some(T),
None
}
Funktioner och metoder
// Functions and methods use snake_case
fn snake_cased_function() {
}
Variabla bindningar
// Regular variables also use snake_case
let foo_bar = "snafu";
livstid
// Lifetimes should consist of a single lower case letter. By
// convention, you should start at 'a, then 'b, etc.
// Good:
struct Foobar<'a> {
x: &'a str
}
// Bad:
struct Bazquux<'stringlife> {
my_str: &'stringlife str
}
förkortningar
Variabla namn som innehåller akronymer, till exempel TCP
bör utformas enligt följande:
- För
UpperCamelCase
namn ska den första bokstaven vara stor versal (t.ex.TcpClient
) - För
snake_case
namn bör det inte finnas några stora bokstäver (t.ex.tcp_client
) - För
SCREAMING_SNAKE_CASE
namn bör förkortningen vara fullständigt aktiverad (t.ex.TCP_CLIENT
)
typer
Skriv kommentarer
// There should be one space after the colon of the type
// annotation. This rule applies in variable declarations,
// struct fields, functions and methods.
// GOOD:
let mut buffer: String = String::new();
// BAD:
let mut buffer:String = String::new();
let mut buffer : String = String::new();
referenser
// The ampersand (&) of a reference should be 'touching'
// the type it refers to.
// GOOD:
let x: &str = "Hello, world.";
// BAD:
fn fooify(x: & str) {
println!("{}", x);
}
// Mutable references should be formatted like so:
fn bar(buf: &mut String) {
}