Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in rust

lazy() method not found in `polars::prelude::DataFrame`

rust raku rust-polars

What is the idiomatic way to achieve ranged integers in Rust?

rust ada

Is it UB to twice drop the same value of a type for which needs_drop() returns false?

rust undefined-behavior

"lifetime may not live long enough" for static reference to function pointer

rust

Rust/Wasm: Module not found: Error: Can't resolve 'env' in

Two mutable borrows happen on the same line?

rust borrow-checker

Is there a way to specify that one executable depends on another in Cargo.toml?

rust rust-cargo

Why does importing a custom derive Foo via `use some_crate::derive_foo` not work?

macros rust rust-macros

Initialize array holding struct more efficiently

arrays for-loop struct rust

How can I update a struct, setting most but not all of the fields to a default value?

rust

How to convert a Matrix4<f32> into a [f32; 16] using nalgebra

rust nalgebra

Rust error handling - capturing multiple errors

rust error-handling

Rust moving value into both sides of map_or_else?

How can the release/acquire semantics of thread parking ever be useful in the face of spurious wakeups?

rust

How to check if a NEAR account has a smart-contract deployed and implements a required interface?

How to import file from sibling folder in Rust

rust

How do the different definitions of Sequentially Consistent relate to each other?

Value moved in an empty expression statement

rust

How to implement std::ops::Index when the output value is not part of the type