LINUX.ORG.RU

История изменений

Исправление RazrFalcon, (текущая версия) :

vs

error[E0384]: cannot assign twice to immutable variable `n`
  --> src/main.rs:13:32
   |
13 |             Data::Number(n) => n = 6,
   |                          -     ^^^^^ cannot assign twice to immutable variable
   |                          |
   |                          first assignment to `n`
   |                          help: make this binding mutable: `mut n`

Привык я к хорошему.

Исходная версия RazrFalcon, :

vs

error[E0384]: cannot assign twice to immutable variable `n`
  --> src/main.rs:13:32
   |
13 |             Data::Number(n) => n = 6,
   |                          -     ^^^^^ cannot assign twice to immutable variable
   |                          |
   |                          first assignment to `n`
   |                          help: make this binding mutable: `mut n`