pub trait ExpectInto {
// Provided method
fn expect_into<Dst: TryFrom<Self>>(self) -> Dst
where Self: Sized { ... }
}pub trait ExpectInto {
// Provided method
fn expect_into<Dst: TryFrom<Self>>(self) -> Dst
where Self: Sized { ... }
}