pub trait ExpectInto { #[inline] #[must_use] fn expect_into>(self) -> Dst where Self: Sized, { super::expect_into::(self) } } impl ExpectInto for T {}