pub trait Base { type Base: ?Sized; // Required method fn base(&self) -> &Self::Base; }
Get a base for inheriting methods
Deref implies Base