Traits
- ReceiverExperimentalIndicates that a struct can be used as a method receiver, without the
arbitrary_self_types
feature. This is implemented by stdlib pointer types likeBox<T>
,Rc<T>
,&T
, andPin<P>
. - Used for immutable dereferencing operations, like
*v
. - Used for mutable dereferencing operations, like in
*v = 1;
.