• ↑↓ pour naviguer
  • pour ouvrir
  • pour sélectionner
  • ⌘ ⌥ ↵ pour ouvrir dans un panneau
  • esc pour rejeter
⌘ '
raccourcis clavier

Ownership and Borrowing

  • Stack and heaps
 
fn main() {
	let s = String::from("Hello");
}

borrow mutable ONCE

  • long running owners
  • refcount

Foreign-Function Interfaces (FFI)