jaken.hashnode.devGetting Started with Rocket and Rust for REST APIsIn this blog post, we’ll begin building a simple to-do application using Rust and the Rocket web framework. Rocket provides a high-level API for building web applications and REST APIs, making it a great choice for developers who want to get up and r...Oct 19, 2024·4 min read
jaken.hashnode.devUnderstanding Rust Lifetimes: A Beginner's GuideAt its core, Rust's lifetimes are markers that define the span of time during which references are valid. Think of lifetimes as a guardrail that ensures you don't access data after it has been deallocated, a safeguard against null pointer dereference...Oct 16, 2024·2 min read