Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in rust

How can I access database pool outside of Rocket context?

rust rust-rocket

Conditionally generate a From impl based on field type

rust rust-macros

Why does std::iter::Peekable::peek mutably borrow the self argument?

rust

Why are string constant pointers different across crates in Rust?

rust

Deserialize value that may be an array of strings or a constant string?

How can I log span duration with Rust tracing?

rust rust-tracing

How to filter ~[T]

rust

Equivalent for abi.encodePacked

What is the recommended way to propagate panics in tokio tasks?

rust rust-tokio

Why constrain the unit type by a generic trait bound in a `where` clause (as in `where () : Trait<…>`)?

Why is it allowed to reassign String but not *&String

rust ownership

How do you create a constant of a type with private fields from an external crate?

How to efficiently use Actix Multipart to upload a single file to disk?

Why does passing option.as_ref behave differently than using a match block and mapping the inner to ref myself?

rust

Use cargo check in its own directory avoiding blocking cargo run

rust rust-cargo