Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in rust

What's the most idiomatic way to test two Options for equality when they contain values which can be tested for equality?

rust

Variable binding: moving a &mut or borrowing the referent?

rust

Mismatched types: expected &str found String when assigning string

string reference rust

cannot borrow as mutable, as it is behind a `&` reference

rust

How can I put an async function into a map in Rust?

rust async-await

Can we create custom Rust operators?

rust operator-overloading

Type-casting arrays/vectors in Rust

arrays vector rust

Calling dynamically linked Haskell code from Rust

macos haskell rust ffi

What is the correct type for returning a C99 `bool` to Rust via the FFI?

How to read a file with JavaScript to WebAssembly using Rust?

javascript rust webassembly

How to use a debugger like GDB or LLDB to debug a crate in Rust?

debugging rust gdb lldb

Why does Rust allow mutation through a reference field using an immutable binding?

rust

Why do the lifetimes on a trait object passed as an argument require Higher Ranked Trait Bounds but a struct doesn't?

rust lifetime

Can Rust's clippy do autocorrection / autofix?

Is it more conventional to pass-by-value or pass-by-reference when the method needs ownership of the value?

What are the differences between specifying lifetime parameters on an impl or on a method?

rust

Fixing "no rules expected the token" macro error

macros rust

Writing a generic function that takes an iterable container as parameter in Rust

What exactly is considered a breaking change to a library crate?

How to match over self in an enum?

enums pattern-matching rust