Trait UncheckedInto

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

The counterpart to UncheckedFrom.

Required Methods§

Source

fn unchecked_into(self) -> T

The counterpart to unchecked_from.

Implementors§

Source§

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