ppv_lite86

Trait Store

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

Required Methods§

Source

unsafe fn unpack(p: S) -> Self

§Safety

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

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§