Twitter Feed: Post

Twitter Feed

@gcouprie ("Geoffroy Couprie") retweeted:

@ekuber ("Esteban K�ber – 🦀⚙️") wrote:

If you are starting learning Rust, try to follow this rule of thumb: only owned types in fields of your own types, always return owned values unless you're passing through directly from a function argument, clone liberally, derive(Copy) when possible, use Arc/RefCell to unblock.