为什么 Vec::iter_mut 没有出现在 std::vec::Vec 的文档索引中?
Why does Vec::iter_mut not show up in the documentation index of std::vec::Vec?
在https://doc.rust-lang.org/std/vec/struct.Vec.html#method.iter,
我只能在页面左侧的索引侧边栏中找到 iter
。但是,iter_mut
找不到。
谁能解释一下这是故意的还是错误?
这很不方便,因为从 phone 浏览时很难搜索文本。我正在滚动索引,找不到 iter_mut
.
边栏仅显示使用 Deref
实现的方法,不显示使用 DerefMut
实现的方法。因此,侧边栏仅显示非可变切片方法。这是一个known bug. A fix has been merged and can be seen in the documentation for the beta release。我假设修复将在下一个稳定版本中。
在https://doc.rust-lang.org/std/vec/struct.Vec.html#method.iter,
我只能在页面左侧的索引侧边栏中找到 iter
。但是,iter_mut
找不到。
谁能解释一下这是故意的还是错误?
这很不方便,因为从 phone 浏览时很难搜索文本。我正在滚动索引,找不到 iter_mut
.
边栏仅显示使用 Deref
实现的方法,不显示使用 DerefMut
实现的方法。因此,侧边栏仅显示非可变切片方法。这是一个known bug. A fix has been merged and can be seen in the documentation for the beta release。我假设修复将在下一个稳定版本中。