pub trait UnsafeFrom<T> {
    unsafe fn unsafe_from(t: T) -> Self;
}
Expand description

Unsafe variant of the From trait.

Required methods

Safety

It is the responsibility of the caller to ensure all invariants of the T hold before this is called, and that after conversion to assume nothing other than the invariants of the output. Implementors of this must ensure that the invariants of the output type hold.

Implementors