pub trait Store<S> {
    unsafe fn unpack(p: S) -> Self;
}

Required Methods

Safety

Caller must ensure the type of Self is appropriate for the hardware of the execution environment.

Implementors