Redis – Should I use generics or Box<dyn> to use a traits methods under a structures field?
how can I create a sort of code, where I can just call let saleor_app = SaleorApp::new(config); let saleor_app.apl.get("10.1:3000/gql/") where SaleorApp has a dyn Trait / Generic field, that allows me to call a function and have any one of…