Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in rust

What's the closest I can get to discriminating an enum by a char?

enums rust

Is there a Rust equivalent to the clock function in C++?

rust libc

How do I deal with wrapper type invariance in Rust?

rust wrapper invariance

What is the difference between using a type as a different name and a type alias?

rust

Macro that declare variables in Rust?

macros rust

Mismatched types. Expected i32, found () [duplicate]

types rust

What is the correct way to convert a Vec for FFI without reallocation?

vector rust ffi

Why does Option<String>.as_ref() not deref to Option<&str>?

How to deal with real large numbers which don't fit in 128 bits in Rust without loss?

rust

Is it possible to have a recursive function computed at compile-time in Rust?

Is it possible to close a TcpListener in Tokio?

rust rust-tokio

How should I decide when it is more or less appropriate to use raw pointers?

pointers rust raw-pointer

Running asynchronous mutable operations with Rust futures

How do I get a vector of u8 RGB values when using the image crate?

rust

What does #[automatically_derived] mean?

rust

Why is the move keyword not always needed even when the closure takes ownership of a value? [duplicate]

rust

Can a `&str` contain a pointer to program memory in Rust?

reference rust literals

What is a function for structs like Java's instanceof?

Is there an alternative or way to have Rc<RefCell<X>> that restricts mutability of X?

Impl trait with generic associated type in return position causes lifetime error

rust