Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in rust

Do structs inside Box::new need curly braces

rust

how to enable comparison between Vec<_> and Vec<_,CustomAllocator>?

rust memory-management

Pass string from C# to Rust using FFI

c# rust ffi

Cannot move out of borrowed content on enum containing a boxed trait object when deriving PartialEq

Is there any mechanism to generate an "ownership tree" visualization with Rust or the Rust tooling?

rust ownership

Deprecated alias does not generate a warning

rust

Unable to load redis module, RedisJSON

What is the difference between taking a slice and taking a reference to an array as argument?

arrays generics rust slice

How do I use Option::unwrap_or_default when it contains a reference?

rust

Why must items on the stack have a size that's known at compile time?

rust

why are lifetimes not required on generic functions

rust lifetime

Why is Iterator::rev defined on Iterator and not DoubleEndedIterator

rust iterator bidirectional

How to see rest of "and X others" in rustc error message?

rust rust-cargo rust-poem

How to check two HashMap are identical in Rust?

How to set cargo unstable options for a target?

rust config rust-cargo

My struct has a field implementing a generic trait G<T>, but it has no fields using T directly. Is this a legitimate use of PhantomData?

rust

Download Only Pre-Compiled Binaries of Rust Crates

rust

Am I forced to create my own Error type?

error-handling rust

How to create a Rc<RefCell<>> of a self mutable reference?

rust