Rust Interior Mutability with Async_std and Tide
It sounds complicated but "interior mutability" just means that safety is checked at runtime instead of at compile time. This is useful for allowing the same object to be potentially modified by multiple threads safely in the context of a web application.