Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in rust

Is there a way to parse a timezone abbreviation into a timezone offset in Rust?

Using () (and other zero-sized types) in FFI

rust ffi

Ctrl-S input event in Windows console with ReadConsoleInputW

Implement tree data structure

rust borrowing

How to match against multiple characters in a Rust match expression?

rust

Is there a short way to extract exactly one element from a `Vec`?

vector rust

How can I generate a bit flag for each type at compile time?

rust

Is it possible to override the crate-type specified in Cargo.toml from the command line when calling cargo build?

rust rust-cargo

Copy/Move an field that doesn't implement Copy

Why is "capture by reference" equivalent to "capture a reference by value" in Rust?

How to use two traits with enum_dispatch?

How do I over-align a variable in Rust?

pointers rust

Borrowed value does not live long enough, unsure why it's still borrowed

rust borrow-checker

How to change the value of an Arc<u64> in a struct?

rust

How to set cfg options to compile conditionally?

Is there a warning for undocumented sections?

Why does the Rust standard library have so much unsafe code?

rust unsafe

Is there a way to "check and set" the value of a `std::cell::Cell`?

rust llvm atomic

"borrowed value does not live long enough" when using `as_slice` [duplicate]

rust