Sumit Mukharjeesumitmukharjii.hashnode.dev·Aug 30, 2024Getting Started With RustSo I have started to learn Rust programming language and will be sharing a series of blogs with you so that we can together have insights on it, so let's dig into this immediately. I am learning this with the help of Piyush Garg's Youtube Channel as ...Discuss·1 likeRust
Harold Lippinharoldrippin.hashnode.dev·Jul 6, 2024[Rust] Variables part 4A variable is a named storage that a program can manipulate.Simply put, variables help programs store values.Variables in Rust are associated with a specific data type.The data type determines the size and layout of the variable's memory, the range o...Discuss·47 readsRust Rust
Harold Lippinharoldrippin.hashnode.dev·Jun 24, 2024[Rust] Data Types part 3A data type system represents the different types of values supported by a language.It allows for code hints and automated documentation while validating the values provided before they are stored or manipulated by the program and verifying that the ...Discuss·30 readsRust
Harold Lippinharoldrippin.hashnode.dev·Jun 22, 2024[Rust] Rust install part 1going to the official site Disclaimer: I’m by no means a Rust expert. https://www.rust-lang.org/tools/installDiscuss·217 readslow-level programming language
Sachin Borsesachinborse.hashnode.dev·Jun 12, 2024Avoiding unwrap() in Production Code: A Guide to Writing Robust Rust ApplicationsIn the vast world of Rust programming, where safety and reliability are super important, there's a tricky function called unwrap(). It might seem like a handy tool at first, but it can actually be a bit dangerous, especially in serious situations lik...DiscussRust
Sachin Borsesachinborse.hashnode.dev·May 8, 2024Easy Guide to Creating a Web Server with Rust and Actix WebIntroduction: Rust has gained popularity in recent years for its performance, safety, and expressiveness. Actix Web, a lightweight and powerful web framework, makes it easy to build web servers and web applications in Rust. In this article, we'll wal...DiscussRust
Meet Jainmeetjain.hashnode.dev·May 4, 2024Why am I learning the Rust language in 2024?Context Before getting started to learn rust I gained hands-on experience in front-end and back-end development and have given just the right amount of time to the data structures and algorithms in my college time. Why Rust? After doing front-end dev...DiscussRust
Sachin Borsesachinborse.hashnode.dev·Apr 25, 2024Ways to Access Struct Data in Rust: A Comprehensive Guide 🦀Rust is renowned for its powerful and expressive type system, and one of the fundamental data structures it provides is the struct. Structs allow you to define custom types with named fields, providing a way to organize related data. In this article,...DiscussRust
yellowcoderyellowcoder.hashnode.dev·Mar 18, 2024Axum - Hello World !Axum is a web application framework that focuses on ergonomics and modularity. This yellowcoder-tibbit tells you about a simple Axum - “Hello World!” examples you can get quickly started with by following steps given in repo. use axum::{response::Htm...DiscussRust
Felipe Ramos da Silvafelipemeriga.hashnode.dev·Mar 11, 2024Rust Re-borrowing and Memory SafetyIntroduction Rust is only 8 years old, and has been increasingly adopted by the software development community, according to this GitHub article, from last year: “Rusthas topped the chart as “the most desired programming language” inStack Overflow’s...Discuss·1 like·260 readsRust