Adrian Macal·Feb 12Learning Rust: Tokio I/O NetworkingEmbark on an exciting journey to learn Rust programming with the help of the Tokio library. Build a TCP Echo Server and gain hands-on experience in handling multiple connections. Enhance your coding skills and fulfill your potential as a Rust programmer. My objective is to study the Tokio library by…Rust5 min readRust5 min read
Satyajit Roy·Aug 5, 2022[Rust] Struct and GenericsLet’s talk about the some custom data types in Rust like struct and emuns . We all know why need custom data type, like any other language regular data type may not suffice the need and hence we have custom data types. Structs, How to use them in Rust ? Structure, struct in short, are very similar to…Rust6 min readRust6 min read
Daniel Espejel·Feb 16A comparison between Sway, Move and RustTaking a look at blockchain languages based on and built on Rust. Not long ago I started programming in Rust for the fun of it. …Rust10 min readRust10 min read
Herbert WolversoninThe Pragmatic Programmers·Updated Feb 24, 2022RustleBuild a Wordle Clone in Rust — Rust8 min readRust8 min read
Raimi KariminITNEXT·Aug 5, 2022Member-onlyCreating a Rust Web App with Rocket and DieselI had a blast — Changelog: 30 Dec 2022 — Use Medium’s new code block for syntax highlighting Declarative, decoupled, laconic, batteries-included — adjectives that I would associate Rocket with after tinkering with it. I would say I really enjoyed myself. See here for a quick review. This is yet another article on Rust +…Rust7 min readRust7 min read
Sacha Arbonel·Nov 5, 2022How to build a Semantic Search Engine in RustIntroduction A semantic search engine is a type of recommender system that relies on the meaning of words to provide better search results. It is different from a traditional full text search engine, which relies on keyword matching to provide results. A semantic search engine allows you to search for concepts…Rust6 min readRust6 min read
chen2089inCoinsBench·May 30, 2022Ethereum with Rust Tutorial Part 1: Create simple transactions with RustThis tutorial shows how to start a local Ethereum virtual machine (EVM) in Rust, query balance, and make simple transactions. The source code is available on Github. Setup requirements Before writing any code, we need to make sure we have some required tools installed, specifically Rust and Ganache. Rust Install Rust by following…Ethereum3 min readEthereum3 min read
demola malomo·Sep 27, 2022Exploring Yew — The Rust-based Frontend FrameworkFrom a React developer’s perspective — WebAssembly, popularly known as WASM, has revolutionized how web applications are built. It has allowed developers to use their favourite programming languages to build web applications. With these possibilities, developers are not tasked with the burden of learning a JavaScript-based framework when building a frontend application. They can leverage their…React7 min readReact7 min read
Kevin B. Greene·Aug 10, 2022Member-onlyAsync Programming in Rust — Part 1: Threads and ChannelsSource: Rust Threads Other Posts in Series Async Programming in Rust — Part 2: Diving into Scoped Threads Async Programming in Rust — Part 3: Futures and Async / Await Introduction This is the first of what will be a series of posts on how to write async code in Rust. I come mostly from…Rust17 min readRust17 min read
Khushal BhardwajinTowards Dev·Sep 5, 2022REST with RustCalling REST APIs with rust may seem like a daunting task at first because of the steep and long learning curve of rust as a programming language. We know that contacting with REST APIs is something that we come across creating almost any other app that comes to mind. We’ll…Rest3 min readRest3 min read
Abhishek GuptainThe Startup·Jan 20, 2021Getting Started With Rust and RedisA hands-on tutorial on how to use Redis with the Rust programming language — Are you learning Rust and looking for ways to get hands-on practice with concrete examples? A good approach might be to try and integrate Rust with external systems. Why not try to integrate it with Redis, which is a powerful, versatile database but dead simple to get started with! In…Rust7 min readRust7 min read
Steadylearner·Jun 18, 2021How to make a cryptocurrency Telegram bot with Rust and TeloxideIn this post, you will learn how to make a simple cryptocurrency Telegram chat bot similar to the cover of this post. You can find the original post here. The Rust programming language will be used mainly for this post. 🦀 Why Rust? Rust is blazingly fast and memory-efficient: with…Rust8 min readRust8 min read
yamaguchi naoto·Feb 2, 2022Base64 Encoding Implementation in RustIntroduction Recently, it’s fun for me to write in Rust. But soon i forget Rust syntax, because my current job use not Rust but Go. So I’ m going to use Rust to implement Base64. What’s Base64 Base64 ,defined in RFC4648, is encoding format. It’s feature is that encoding data is generated by…Rust2 min readRust2 min read
Amit Khatri·Apr 16, 2022Working with Result datatype in RUSTIntroduction It is the datatype that contains one of two types of data: Success(T) Error(E) Result type is mostly used in the cases when there is possibility of failure as it helps to handle the error in the program. For example, opening the file, perhaps while opening the file there might…Rust Programming Language4 min readRust Programming Language4 min read
applied.math.coding·Apr 21, 2022Member-onlyImplementing a Linked List in Rust.In this story we are going to look at a very common used data structure, that is, a linked list. After looking at its definition we will provide a possible realization in Rust. When it comes to data structures Rust is known to be a little tricky because of its…Rust6 min readRust6 min read