Okay. Dumb question.
impl<T: ?Sized> Deref for Box<T> {
type Target = T;
fn deref(&self) -> &T {
&**self
}
}
Doesn't this implementation... call itself?
Okay. Dumb question.
impl<T: ?Sized> Deref for Box<T> {
type Target = T;
fn deref(&self) -> &T {
&**self
}
}
Doesn't this implementation... call itself?
See Box is Special.