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

Types that can be read from a contiguous memory representation

Required methods

Implementors