Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in rust

What is the best way to implement optional library dependencies in Rust?

Are mutable static primitives actually `unsafe` if single-threaded?

rust embedded unsafe

mem::transmute error when bounded to const N

rust

How do I use print! with Rocket when compiling for release?

rust rust-rocket

Is the final comma in Rust struct definitions necessary?

rust

Failed to select a version for the requirement `rand = "^0.9.0"`

rust rust-cargo

How to find an element in vector of Option<String> [duplicate]

vector rust find closures

`.ok_or()` works but `.ok_or_else()` doesn't work even the type signature is the same

rust

Moving value out of the Box by dereferencing (and what it is desugared into)?

Should I use `stringify!` for non-Rust source code strings like SQL queries?

sql rust

How do I parse a JSON body in Rocket when the content type is not "application/json"?

json rust serde rust-rocket

Is there a range expression that can be used to refer to the last N elements of a slice?

rust

How to share a pointer to a mutable variable to a thread? [duplicate]

rust thread-safety uci

What is the point of an Infallible Result, over just returning the Ok() branch?

rust warp rust-result

Do Rust closures really not need type annoations?

rust closures

Lifetimes when returning a reference to the contents of Rc<RefCell<_>> [duplicate]

rust lifetime

How do I obtain a trait object from a wrapper trait object with an associated type?

rust associated-types