pub trait DerefRaw { type Target: ?Sized; fn deref_raw(this: Ref<'_, Self>) -> Ref<'_, Self::Target>; }
A variant of Deref that works with raw references.
Deref
The resulting type after dereferencing.
Dereferences the value.