pub trait TryFromItem<'a>: Sized {
    fn try_from_item<'b>(item: &'b Item<'a>) -> Option<&'b Self>;
}

Required Methods

Implementors