Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in rust

failed to parse manifest - no targets specified

rust rust-cargo

Equivalent of __func__ or __FUNCTION__ in Rust?

macros rust

Why is std::rc::Rc<> not Copy?

rust smart-pointers

Is it possible to access struct fields from within a trait?

oop rust traits

What happens when an Arc is cloned?

concurrency rust clone

Can I use '<' and '>' in match?

rust match quadratic

How to make a program that does not display the console window?

windows console rust

How do I conditionally execute code only when an Option is None?

rust

Can I use the "null pointer optimization" for my own non-pointer types?

optimization rust

What is the difference between `|_| async move {}` and `async move |_| {}`

rust

What are examples of types that implement only one of Send and Sync?

rust

How do I fix "cannot find derive macro in this scope"?

rust

What is the correct & idiomatic way to check if a string starts with a certain character in Rust?

string rust

How do I use conditional compilation with `cfg` and Cargo?

rust rust-cargo

How can I append a formatted string to an existing String?

string-formatting rust

Is it possible to declare local anonymous structs in Rust?

struct rust

How to multiply/divide/add/subtract numbers of different types?

The trait cannot be made into an object

How do I assert an enum is a specific variant if I don't care about its fields?

rust

Why does passing a closure to function which accepts a function pointer not work?

rust