имеется дереференс через *имя_переменной
Только дереф
Но дереф отдает рефернс, а через * там владение
Глянь https://doc.rust-lang.org/std/ops/trait.Deref.html Deref coercion
If T implements Deref<Target = U>, and x is a value of type T, then: In immutable contexts, *x (where T is neither a reference nor a raw pointer) is equivalent to *Deref::deref(&x).
т.е. *m то же самое что *m.deref() ?
Обсуждают сегодня