Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in rust

Is there a way to store a random number generator as a trait object?

rust traits trait-objects

Channels for passing hashmap between threads | stuck in loop | Rust

Easier way to return `impl Iterator<Item = T>` with `DoubleEndedIterator`, `ExactSizeIterator` and `FusedIterator` features

generics rust iterator traits

Problem with aligning Rust structs to send to the GPU using bytemuck and WGPU

"expected identifier" when creating a macro to define mutable variables at the same time

rust rust-macros

Rust mod files in the same folder vs use

rust

NEP-141 implementation

rust nearprotocol

Reading from file at different offsets using Rust

file rust

Split implementation across multiple files/modules and keep everything as private as possible

module rust private public

Why can't a mutable method be called on a mutable String reference but works for TcpStream

rust

Rust build error: unknown `--json` option `future-incompat`

rust embedded rust-cargo

Why does Tauri modify the parameter names of invoked functions?

rust tauri

Replicating Windows Run behavior using either `CreateProcessW` or `ShellExecuteExW`?

windows winapi rust windows-rs

Why isn't the `+ 'static` on my `-> impl Future<...> + 'static` trait method respected?

Can I create my own conditional compilation attributes?

My Rust project is broken all of the sudden [duplicate]

rust rust-cargo rust-crates

How does a pin_mut!() macro works?

rust macros ownership

Why in Rust struct only last field is allowed to have dynamically sized type

rust rust-cargo

How to reuse code from the main bin in another bin?

How to ensure trait bounds within a trait?

rust