Questions About Reborrowing `&mut T` Multiple Times
原文英文,约200词,阅读约需1分钟。发表于: 。语法特性叫 reborrowing, the book 和 the reference 都没写清楚, 实际人人都用,根本离不开的。 // 已有 I 和 X1 以及 `impl From<&mut I> for X1` struct I(i32); struct X1; impl From<&mut I> for X1 { fn from(p: &mut I) -> X1 { ...
本文介绍了在 Rust 中实现 From<&mut I> for XT,解释了函数 from_twice_fail 中的错误,并介绍了如何通过函数 from_twice 避免这个错误。