esp-rs / esp-flasher-stub

Rust implementation of flasher stub located in esptool
Apache License 2.0
18 stars 10 forks source link

Remove usage of dyn, instead use an enum for runtime dispatch #33

Closed MabezDev closed 11 months ago

MabezDev commented 11 months ago

Closes #22

Didn't really make much of an impact on binary size, saved around 60bytes, but maybe using an enum will give the compiler a more clear view and enable better optimizations.