How to implement a custom workflow for json deserialization in Rocket framework?
Within the following code I want to allow age
to be a number or a string, for example 33 or “33”, but it fails when it’s a string. How can I accept it? I see process fails before starting the add
function. I am using Rocket framework.