The last time that I tried to run Rust on AWS Lambda it required that I compile the Rust code into a Python package and then run the Python Lambda target. Now this is unnecessary and much deserved. Rust is a great new language that fits well into the dynamic ecosystem of Serverless Web Programming.
To run on AWS it is now only required that the developer include the AWS setup and teardown code into their code, then compile the project into the AWS Linux target. This is all fairly straightforward and much easier to get started with.
extern crate lambda_runtime as lambda;
extern crate serde_derive;
extern crate log;
extern crate simple_logger;
use HandlerError;
use Error;