pub trait SubstateReadHandler {
type Error;
// Required method
fn on_read_substate(
&mut self,
heap: &Heap,
value: &IndexedScryptoValue,
location: SubstateDevice,
) -> Result<(), Self::Error>;
}
Expand description
Callback for substate read, from SubstateIO