Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in rust

How to capture mutable reference into move closure contained in iterator returned from a closure

closures rust

How can I use a specific build of Rust in a nixpkgs derivation?

rust nix

Blocked by CORS on Actix Web backend with Cors::permissive()

rust actix-web

Clarification on Deref coercion

rust

Common function that is used both in `tests` and `src` not found

rust

rust macro expansion ignores token `,` and any following

rust macros

What happens when I clone a struct with Arc inside?

How to return an error from `deserialize`?

rust deserialization serde

Iterate over combinations of elements of a vector and manipulate elements

rust

Why does rust require explicit lifetimes for mutable references but not regular reference?

rust borrow-checker

How do I pass App data to service route handler function in actix-web when using function decorations?

Where is the Rust intrinsic called "transmute" actually implemented?

rust

Why does the implementation of AsyncRead on Box have an Unpin trait bound?

rust rust-tokio

Copy a &str into an array pointer in Rust

rust ffi

Why does a refcell borrowed within an expression live longer than intended (while borrowing to a variable works)

rust borrow-checker refcell

How to assign new value to an Option<Box<_>> variable?

rust

How do Solana Rust smart contracts handle arrays and vectors?

arrays vector rust solana

How to force rust to drop a mutable borrow?

rust borrow-checker

Why do I get "expected u32, found &{integer}" when pushing into a vector using iterators from the permutator crate?

vector types rust slice

Make iterator of nested iterators

rust