Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in rust

'Unresolved name' inside macro despite 'ident' designator

rust

What is an idiomatic way to fill a user-supplied buffer when reading bytes?

io rust

How to bind multiple fields of a boxed struct without getting "use moved value" error?

struct rust ownership

Thread-safe mutable non-owning pointer in Rust?

multithreading rust

How does `Borrow` work without trait specialization?

rust traits

Can I set an LLDB breakpoint when multiple Rust source files share the same name?

rust lldb

How to idiomatically construct struct with heap references?

rust

Continuous test-driven development for Rust

tdd rust

Is it possible to create a type alias that has trait bounds on a generic type for a function?

Why is drop not called for a logger implementation?

logging rust destructor

How to safely store immutable, aliasing copies of a generic value?

Why do I get a `trait bound `[T]: std::marker::Sized` is not satisfied when I try and implement Ord and Eq manually on unsized types?

rust traits

Is it possible to disable Rust's lifetime elision?

rust lifetime

Is there a simpler way to run clippy on my build script?

How to use rayon's .par_iter() with a vector of generics?

generics rust rayon

How to convert from std::io::Bytes to &[u8]

rust

How do I format a signed integer to a sign-aware hexadecimal representation?

formatting integer rust

What does the dollar syntax mean in a Rust format string?

rust string-formatting

Creating Diesel.rs queries with a dynamic number of .and()'s

rust rust-diesel

Why does using Option::map to Box::new a trait object not work?

rust trait-objects