Function write_object

Source
pub fn write_object<T: Into<Vec<u8>>>(address: usize, object: T)
Expand description

writes an Value to the specified address

§Arguments

  • address Address of the starting point of the Value
  • Object An object that implements Into<Vec>

§Example

//remember, sample_object can be any type that implements Into<Vec<u8>>
write_object(0x6473AA4, sample_object)