Rust Learning: Modules
2026-06-27
mod declare/defines module, use creates shortcuts, pub mod declare/defines and shares module, pub use creates and shares shortcutRust Polars Parquet
2026-06-17
group_by breaks the Frame, over adds columns; DataFrame transforms rows
Rust Learning: Deref
2026-05-29
deref() returns a reference; Rust adds *; as_ref() and as_deref() let you peek without consuming
Rust Learning: Lifetime
2026-05-20
&‘a str, ’long:‘short, where T: Display + ‘a, where T: Display + ‘static