Browsing Tag
rust
115 posts
How to Write Tests in Rust
Testing is an essential part of software development, especially when coding professionally and improving your code’s quality. In…
[Rust]How to make string handing to frontend on tauri app
#[tauri::command] pub fn simple_command()->String{ "String".to_string() } If you want to return a string in a Tauri command,add to_string()…
Intro to Stellar: Get Started in Rust, Set Up Your Development Environment, and Write Your First Smart Contract
Hello! This is the first in a series of five livestreams designed to help the community participate in…
Lifetimes in Rust explained
I want to discuss a fundamental concept you must grasp to master the Rust programming language: “Lifetimes.” Usually,…
Total Madness #0: Locks
This is the first post in a series about my urges to figure out the dark magics of…
Rust vs. C++: Modern Developers’ Dilemma
I have come to realize one common dilemma: Many developers are going back and forth between Rust and…
Rust vs Typescript Variables
Jumping into Rust from Typescript requires that you change the way you think about code. A Simple Log…
Create a command line application with Rust
Introduction In this little post, we’ll build together a very simple command line application using Rust. The goal…
Implement React v18 from Scratch Using WASM and Rust – [7] Support FunctionComponent Type
Based on big-react,I am going to implement React v18 core features from scratch using WASM and Rust. Code…
Interview with Adithya, Creator of Clear
Welcome to the 4th episode of our series “Building with Tauri”, where we chat with developers who build…