Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in rust

How to create a heterogeneous Python dict in Rust with PyO3?

rust pyo3

immutable value is still being moved

How to pass a boxed trait object by value in Rust?

rust traits trait-objects

Is there any way to inline a const inside a doc comment (rendered by cargo doc)?

rust doc cargo-doc

Why does holding a non-Send type across an await point result in a non-Send Future?

asynchronous rust future

How do I extend a HashSet<String> with another HashSet<String>? [duplicate]

string rust hashset ownership

How to fill a [u8] array with a repeated u16 value? [duplicate]

Rust proc_macro_derive: How do I check if a field is of a primitive type, like boolean?

rust rust-proc-macros

Rust: can tokio be understood as similar to Javascripts event loop or be used like it?

rust async-await rust-tokio

[Rust Enums]: How to get data value from mixed type enum in rust?

rust enums

How to work around the lack of abstract classes in rust?

rust abstract

How can I use Rc::clone while casting to a trait object?

rust trait-objects

How do I implement `Hash` for an enum with a special case?

rust

Is macro_rules a regular macro?

rust rust-macros

Why does this closure's lifetime change based on seemingly unrelated types?

rust

Rust optimizing out loops?

optimization gcc rust

How using Rust do I assign the value being matched as the result?

rust

Why does this rust HashMap macro no longer work?

rust

How to refactor out repeated manipulations of local mutable variables?

rust

Getting raw bytes from packed struct

serialization rust