pub trait StoreFrom {
// Required method
fn store_from(
&self,
memory: &mut [u8],
address: usize,
) -> Result<(), TrapCode>;
}Expand description
Allows to efficiently write bytes from a buffer into memory.
pub trait StoreFrom {
// Required method
fn store_from(
&self,
memory: &mut [u8],
address: usize,
) -> Result<(), TrapCode>;
}Allows to efficiently write bytes from a buffer into memory.