The suggested way by actix-web
to treat files from multipart/form-data
is to save them to fs, but I'd like to make some preparations like guessing format, making thumbnail, calc a hash etc.
Is there a way not to rewrite all the chain of functions called by handle_multipart
from actix-multipart
in order to make several minor changes?