gpt4 book ai didi

rust - Pin::as_mut(&mut self )

转载 作者:行者123 更新时间:2023-12-03 11:32:54 25 4
gpt4 key购买 nike

Pin::as_mut 的来源- pin.rs:

impl<P: DerefMut> Pin<P> {
...
pub fn as_mut(&mut self) -> Pin<&mut P::Target> {
unsafe { Pin::new_unchecked(&mut *self.pointer) }
}
...
}
我不明白为什么使用 &mut *self.pointer而不是 self.pointer,下面的句子有什么问题?
unsafe { Pin::new_unchecked(self.pointer) }

最佳答案

Pin::new_unchecked(self.pointer)只会返回Pin<P>而不是Pin<&mut P::Target>,因此不会考虑使用deref强制。它还将尝试将pointerself中移出,并导致编译器错误。
使用*会将self.pointer取消引用为P::Target,而&mut使其返回可变引用。

关于rust - Pin::as_mut(&mut self ),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65988115/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com