pub trait TryInto<T> {
    fn try_into(self) -> Option<T>;
}

Required Methods