Skip to content
TILens What matters today in tech v0.2.0
Theme

Topic - Edition

Rust

3 items on 03 Sep 2026
Rust

Generic statics within generic functions

First off, please forgive my ignorance towards the current implementation and limitations of the compiler. The following may or may not be reasonably feasible. I'm not currently advocating for global generic statics as…

Source: Rust Internals Forum jacobrgreen114
Rust

API design: `TracingResult`

So I've finally had enough of typing .map_err(|error| { tracing::warn!("uncooperative yak!", %error); error })?; and decided to do something about it. I currently have the following (nightly only), but would really like…

Source: Rust Users Forum MusicalNinjaDad