Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in rust

What are the use cases of raw identifiers besides new keywords?

rust rust-2018

How can I implement a function differently depending on if a generic type implements a trait or not?

rust generic-programming

How can I avoid PhantomData in this struct definition?

rust traits

Why does my nom parser not consume the entire input, leaving the last piece unparsed?

rust nom

How can I extend the lifetime of a struct so that I can call tokio::run with it?

rust

Expected a slice, found an array when asserting they are equal

types rust slice

How do I use the Option::ok_or() method correctly?

error-handling rust

Error: Expected Type Parameter, Found Closure [duplicate]

generics rust traits

Returning a recursive closure in Rust

How can I deserialize a bincode field without a given length

rust deserialization serde

Does type constructor implement Fn?

rust

How to "use another-file" in rust? Module with hyphens in it

rust

understanding error: trait `futures::future::Future` is not implemented for `()`

rust rust-tokio

Overriding Rust installation default paths `$HOME/.cargo` and `$HOME/.rustup`

rust rust-cargo rustup

Does the Rust standard library have a Min/Max trait?

rust

How to call a Nim function from Rust through C-FFI?

c rust ffi nim-lang

How can I fix unused imports in Rust automatically?

Writing to a field in a MaybeUninit structure?

Rust: Method "poll" not found in `impl std::future::Future`

rust

where should I add an explicit lifetime bound?

rust