pub trait TryMapInto<T> { type Error; // Required method fn try_map_into(self) -> Result<T, Self::Error>; }