Tag: rust

Rust Logo Over Stacks of Books

Full-stack Rust: A complete tutorial with examples

Dev

This complete tutorial explores how to create a shared Rust module and build a full-stack web application with practical examples.

Mario Zupan
Sep 9, 2021 ⋅ 24 min read
Ditching Try / Catch And Null Checks In Rust

Ditching try...catch and null checks with Rust

Dev

Learn how to implement a better way of error handling in your development using Rust’s Result enum and pattern matching.

Ben Holmes
Jul 19, 2021 ⋅ 7 min read
Fundamentals Rust Structs

Fundamentals for using structs in Rust 

Dev

Improve your code by adding structs to your Rust application. Cover the fundamentals for instantiating structs in Rust.

Alex Merced
Jul 8, 2021 ⋅ 5 min read
Build Rust Frontend Web App Yew WebAssembly

Build a Rust + WebAssembly frontend web app with Yew

Dev

WebAssembly has made it possible to build frontend apps in Rust. Now, learn to build a simple web app with Rust and Yew, powered by Wasm.

Mario Zupan
Jun 15, 2021 ⋅ 11 min read
Rust and Deno Logos

How to create a Deno plugin in Rust

Dev

This tutorial covers how to build a Deno plugin using Rust and create an async plugin using Rust futures and the deno_core crate.

Anshul Goyal
Jun 2, 2021 ⋅ 4 min read
What You Can't Do In Rust

Understanding inheritance and other limitations in Rust

Dev

Transposing other language paradigms to Rust often reveals unforeseen issues. Learn about the limitations of Rust and how to work around them.

Andre Bogus
May 14, 2021 ⋅ 7 min read
Rust Cargo Demystifying Nocdn

Demystifying Cargo in Rust

Dev

Cargo, Rust’s build system and package manager, is a frequently misunderstood tool that is necessary for publishing your project.

Ukpai Ugochi
May 5, 2021 ⋅ 4 min read
Rust Linfa Machine Learning

Machine learning in Rust using Linfa

Dev

Use Linfa in your Rust application to add algorithms for many areas of machine learning like linear regression and data clustering.

Mario Zupan
Apr 30, 2021 ⋅ 9 min read

An introduction to profiling a Rust web application

Dev

Measure Rust web application performance with this introductory tutorial and guide to several handy profiling tools.

Mario Zupan
Apr 23, 2021 ⋅ 11 min read

Understanding ownership in Rust

Dev

Learn how to utilize ownership, Rust’s unique memory allocation feature that guarantees memory safety even for large projects — no garbage collector required.

Ukpai Ugochi
Apr 7, 2021 ⋅ 8 min read
Rust Internationalization Localization Translation

Rust internationalization, localization, and translation

Dev

Make apps globally accessible by adapting content to suit users in different regions by using one of Rust’s 8 internationalization API tools.

Abiodun Solomon
Mar 5, 2021 ⋅ 4 min read
rust to typescript

Switching from Rust to TypeScript (and vice versa)

Dev

Avoid stress and complication when switching your application from one programming language to another by understanding dependencies, data types, and conditional statements in each.

Ukpai Ugochi
Feb 22, 2021 ⋅ 9 min read