Type Definition egui_memory_editor::WriteFunction[][src]

type WriteFunction<T> = fn(_: &mut T, _: usize, _: u8);

Writes the changes the user made to the T object.

Arguments

  • &mut T: the object whose state is to be updated.
  • usize: The address of the intended write.
  • u8: The value set by the user for the provided address.