The Iterator Trait
when implementing the Iterator trait in Rust, your struct usually needs some form of state to keep track of the iteration’s progress. Often, this is achieved by including a counter or index field in your struct. https://doc.rust-lang.org/stable/book/ch13-02-iterators.html?highlight=iterator%20trait#the-iterator-trait-and-the-next-method Also, check out : https://doc.rust-lang.org/stable/book/ch19-03-advanced-traits.html#specifying-placeholder-types-in-trait-definitions-with-associated-types impl Iterator for Here’s a basic example of how to implement an iterator […]
Learn libp2p in Rust
“The Rust Implementation of the libp2p networking stack.” https://github.com/libp2p/rust-libp2p/blob/master/libp2p/src/tutorials/ping.rs Peer-to-peer networking library libp2p is an open source networking library used by the world’s most important distributed systems What is a swarm? A swarm in libp2p represents a group of peers that can communicate over a P2P network. It provides the necessary abstractions for connection management, message […]
From Trait
One of the more confusing examples for me to learn when studying Dave Macleod’s excellent “Rust in a Month of Lunches” was page 145. Check the “Rust Book” for the official description of the from trait : https://doc.rust-lang.org/std/convert/trait.From.html I modified the example to use cities in England to help me relate to it! Two cities, […]
Deserialize SurrealDB query with Rust
If you are new to SurrealDB and Rust you may be interested in how to get the data from a Response or even be trying to parse a ‘Value’. The Response struct The secret is to make a struct that will contain the keys (field names) that are present in the response. You don’t want […]
iced.rs – example snippets (version 0.13)
Code plus screenshots – how to manipulate the layout in Rust + iced.rs Credit : https://jl710.github.io/iced-guide/index.html © Héctor Ramón (hecrj) for the iced logo. just using “row” Change “row” to “column” just using “column” Column is centered…but not the text! 🤔 Column is centered and the text! 😀 Centre the window – iced.rs – 0.13 […]
Rust Smart Contract (Stellar timelock)
Let’s pick the code apart for a timelock smart contract and with a bit of help from chatGPT and the Stellar documentation we’ll make sure we understand every part of it. https://github.com/stellar/soroban-examples/blob/main/timelock/src/lib.rs Timelock This is how it works with Alice and Bob: In summary, the contract protects the funds by ensuring that only the designated […]
Rust SurrealDB – JWT Auth
Testing Rust code for “signup” and checking the token. Add Scope and then you can create the JWT. Watch the YouTube video here: https://youtu.be/e4a8lOT_Gxg https://surrealdb.com Use the bearer token created by the rust code, not the one here as it will have expired WEBDOCK Linux VPS Hosting
Web Scraping EBAY with ScrapeOps & Rust
In this article I show some code to web scrape EBAY using Rust and a proxy provided by ScrapeOps The code below uses the ScrapeOps endpoint : “https://proxy.scrapeops.io/v1/” and the requests are forwarded on to your chosen url to scrape. How to get an API key? You can get a free one, with 1000 tokens […]