1
2
3
pub trait TryAsRef<T> {
    fn try_as_ref(&self) -> Option<&T>;
}