Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in rust

Is there a way to get a BufWriter's buffer length?

rust

Why do generic lifetimes not conform to the smaller lifetime of a nested scope?

scope rust lifetime

Is it possible to store a Rust struct containing a closure in a different struct?

rust traits

How to write a trait method taking an iterator of strings, avoiding monomorphization (static dispatch)?

rust

In Rust, can you own a string literal?

Cannot infer type for type parameter `S` when using HashSet::from_iter

rust

Rust persistent TcpStream

sockets tcp rust

Creating a callback system using closures

closures rust

Traits in algebraic data types

rust

Does lifetime elision work for methods in trait impls?

rust lifetime

How can I overload the assignment operation in Rust?

rust assignment-operator

Lifetime differences between references to zero sized types

rust

E0119 error with generic trait implementation

generics rust traits

Clarify the meaning of binding two references to differently scoped referents to the same lifetime in a function signature

What is the difference between repr(C) and repr(rust)?

rust

Is allocating a struct on the heap or having a struct own a heap pointer more idiomatic?

rust

How can I store a Chars iterator in the same struct as the String it is iterating on?

rust

What's the equivalent of a C preprocessor-like #define for an array length? [duplicate]

rust

When to be explicit with type annotation?

types rust primitive

error: variable 'x' is still repeating at this depth

macros rust