You can't. RefCell::borrow returns a Ref<T> , not a &T . If you try to do this in a method then you will need to first borrow the Ref<T> but ...
確定! 回上一頁