This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
# Deref
下面的代码会报错
```rust
usestd::ops::Index;
usestd::rc::Rc;
structMyType<T>{bytes: T}
// Wow such clean much wow
impl<T: Index<I>,I>Index<I>forMyType<T>{
typeOutput=T::Output;
fnindex(&self,index: I)-> &Self::Output{
&self.bytes[index]
}
}
fnmain(){
letrc1=Rc::new([1,2,3]);
rc1[0];// OK
letrc2=MyType{bytes: Rc::new([1,2,3])};
rc2[0];// error[E0608]: cannot index into a value of type `MyType<Rc<[{integer}; 3]>>`