My take on Send/Sync

⚓ Rust    📅 2025-09-12    👤 surdeus    👁️ 11      

surdeus

Warning

This post was published 62 days ago. The information described in this article may have changed.

Info

This post is auto-generated from RSS feed The Rust Programming Language Forum - Latest topics. Source: My take on Send/Sync

Hi everyone!

I've been working with Rust for a while now, and Send/Sync gave me quite a bit of trouble early on.

Whenever I'd try to use certain types across threads, I'd get these compiler errors about Send or Sync not being implemented, and I'd end up finding workarounds without really grasping the fundamental reasons behind these constraints.

After some frustration, I decided to sit down and properly understand what these traits are actually trying to accomplish. This post represents my current understanding of Send/Sync after spending time with the concepts.

I'd appreciate any feedback or corrections. Thank you for reading!

1 post - 1 participant

Read full topic

🏷️ Rust_feed