Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in rust

Calculating prime numbers in Rust

rust

How to get the content of a module passed to an inner attribute macro?

rust rust-proc-macros

Is there a way to see all the crates in my project that optionally depend on another crate?

rust rust-cargo

Catch string between tags with nom delimited

rust nom

How to generate complex enum variants with a macro in rust

macros rust

How does ownership and borrowing work when making slices?

rust

I get a expected type parameter, even though I think I have returned the correct type data

types rust traits

expected a closure that implements the `Fn` trait, but this closure only implements `FnOnce`

rust hyper

How to interlace an iterator with itself from the end?

How do I specify one type argument and let Rust infer the rest?

rust typing inference

Why is Rust program not returning values from if statements? [duplicate]

rust

Debug trait not implemented for some enum variants

rust

Can a struct implement two traits with conflicting method names in Rust? [duplicate]

rust traits

How to enforce error handling in Rust when there is no actual result?

rust error-handling

How can I return an iterator over a locked struct member in Rust?

iterator rust mutex

How to handle nested JSON objects in reqwest?

json http rust reqwest

Openssl can't compile when compiling for ARM, otherwise works fine

ubuntu rust openssl arm

How to deal with `the trait cannot be made into an object` error in rust? Which traits are object-safe and which ain't?

rust compiler-errors traits

How Create SQLite database in a tauri TS app?

Implementing Index trait with lifetime