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

Types that can be read from a contiguous memory representation

Required methods

Implementors