Rust

Rust

52 bookmarks
Custom sorting
Traits in Rust
Traits in Rust
In this article, we cover the basics of traits in Rust: what they are, when they are useful, and how to use them.
·serokell.io·
Traits in Rust
Generics in Rust
Generics in Rust
With Rust generics, programmers can write general algorithms that work with arbitrary types, reducing code duplication and providing type safety. In this article, we show when and how to use them.
·serokell.io·
Generics in Rust
Get Started with Rust: Structs
Get Started with Rust: Structs
In Rust, structs are composite data types that contain multiple related types. In this article, we show you how to define and instantiate structs, derive traits for them, and create struct methods.
·serokell.io·
Get Started with Rust: Structs
Writing RecordBatches to Delta in Rust
Writing RecordBatches to Delta in Rust
A developer focused post explaining how to write to a Delta table in Rust using the Apache Arrow RecordBatch data structure.
·buoyantdata.com·
Writing RecordBatches to Delta in Rust
Home | Rust Helpful Codes
Home | Rust Helpful Codes
rust.helpful.codes is a directory of helpful codes and explanations regarding datastructures, algorithms, patterns and some tutorials on common programming problems as well as known libraries tutorials, using rust.
·rust.helpful.codes·
Home | Rust Helpful Codes
Big Data with RUST Part 1/3 — Yes we can!!!
Big Data with RUST Part 1/3 — Yes we can!!!
A series of post to show Rust Frameworks that permits work in Big Data area. In total there are 3 posts: this with introduction with part…
·miyake-akio.medium.com·
Big Data with RUST Part 1/3 — Yes we can!!!
There’s some rust in my (data) pipeline
There’s some rust in my (data) pipeline
There is a certain hype going around Rust, how it will replace Python in the coming years and how it it has a better sustainability score…
·blog.devgenius.io·
There’s some rust in my (data) pipeline
Introduction to Polars
Introduction to Polars
Closer look at one of the fastest Dataframe library at the moment
·r-brink.medium.com·
Introduction to Polars
Smart data FaaS with WebAssembly & Rust
Smart data FaaS with WebAssembly & Rust
Smart data FaaS with WebAssembly & Rust. Explore REEF engine, Rust connectors, and WebAssembly-powered functions.
·punchplatform.com·
Smart data FaaS with WebAssembly & Rust
Wasm By Example
Wasm By Example
A hands-on introduction into WebAssembly ( Wasm ). Containing simple wasm examples and wasm tutorials on how to implement concepts and various tasks using WebAssembly.
·wasmbyexample.dev·
Wasm By Example
Working with Environment Variables in Rust
Working with Environment Variables in Rust
This post shows how to work with environment variables in Rust using both, the standard library and the envy crate.
use std::env;
·thorsten-hans.com·
Working with Environment Variables in Rust