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

Unsafe variant of the From trait.

Required Methods

Implementors