pub trait TryAsRef<T> { // Required method fn try_as_ref(&self) -> Option<&T>; }
A version of AsRef<T> that can fail.
AsRef<T>