[][src]Trait guts::FromGutsUnchecked

pub trait FromGutsUnchecked: Guts {
    unsafe fn from_guts_unchecked(guts: Self::Guts) -> Self;
}

Unsafely constructing values from their guts without checking invariants.

Required methods

unsafe fn from_guts_unchecked(guts: Self::Guts) -> Self

Constructs a value from its guts, without checking invariants.

Loading content...

Implementors

impl<T> FromGutsUnchecked for T where
    T: FromGuts
[src]

Loading content...