Trait FromMemory

Source
pub trait FromMemory<T: Sized>
where Self: Sized,
{ // Required method fn from_memory(device_info: &DeviceInfo, view: &MemoryView) -> Result<Self>; }
Expand description

Types that can be read from a contiguous memory representation

Required Methods§

Source

fn from_memory(device_info: &DeviceInfo, view: &MemoryView) -> Result<Self>

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§