[][src]Trait typic::transmute::UnsafeTransmuteInto

pub unsafe trait UnsafeTransmuteInto<U, O = ()>: Sized where
    O: UnsafeTransmuteOptions
{ unsafe fn unsafe_transmute_into(self) -> U; }

A sound value-to-value conversion. The reciprocal of UnsafeTransmuteFrom.

UnsafeTransmuteInto<U> is only implemented for T when

  1. T is soundly transmutable into U.

See also unsafe_transmute.

Required methods

unsafe fn unsafe_transmute_into(self) -> U

Reinterprets the bits of from as type Self.

Loading content...

Implementors

impl<T, U, O> UnsafeTransmuteInto<U, O> for T where
    U: UnsafeTransmuteFrom<T, O>,
    O: UnsafeTransmuteOptions
[src]

Loading content...