Objects that implement the immutable dereference operator.
trait Deref {
type Target: ?Sized;
/* Required methods */
fn deref(&self) -> &<Self as Deref>::Target
}| Name | Description |
|---|---|
| Target | The output of the operator. |
| Receiver | Name | Description |
|---|---|---|
&self | deref | The method that will be called by the operator. |