verrchu's blog
- title
- verrchu's blog
- type
- entity
- summary
- verrchu's blog at verrchu.github.io โ short, deep technical posts on Rust gotchas with full compile errors and accompanying source
- tags
- blog, rust
- sources
- verrchu-sync-bound
- created
- 2026-05-10
- updated
- 2026-05-10
verrchu.github.io/blog is a small but well-shaped Rust-focused blog. The first post (May 2026) is "The Sync Bound Nobody Asked For" โ a worked walkthrough of why &self in async trait methods returning Send futures silently demands Self: Sync, with all four cells of the truth table demonstrated and the compile errors verbatim.
Format characteristics worth noting: every code listing is paired with a static_assertions::assert_impl_all! to prove the type's bounds, full compile errors are quoted (so the reader can grep them), and the accompanying source code is on GitHub at verrchu/blog. This is the format the post calls out in its footer ("Built with rustc 1.95.0. Library versions used: tokio 1.52.2.") โ versions pinned, source linked, errors verbatim. Compare with the the-coder-cafe format (single-concept-per-post, less code-heavy) for two takes on short technical writing.
Ingested articles
- rust-async-trait-sync-bound โ 2026-05 โ Why
&selfin async trait methods returningSendfutures silently demandsSelf: Sync