Type Definition egui_memory_editor::ReadFunction[][src]

pub type ReadFunction<T> = fn(_: &mut T, _: usize) -> u8;
Expand description

Reads a value present at the provided address in the object T.

Arguments

  • &mut T: the object on which the read should be performed.
  • usize: The address of the read.