Function chiter::write_object[][src]

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

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)