pub trait UncheckedInto<T> {
    // Required method
    fn unchecked_into(self) -> T;
}
Expand description

The counterpart to UncheckedFrom.

Required Methods§

fn unchecked_into(self) -> T

The counterpart to unchecked_from.

Implementors§

§

impl<S, T> UncheckedInto<T> for S
where T: UncheckedFrom<S>,