Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in rust

How does Vec<T> implement iter()?

rust

Is there a way to create a UdpSocket without bind() for just send_to()?

rust

Use trait from submodule with same name as struct

module rust traits

Why can't I take the reference of the result of try! with &?

rust

How to copy or borrow a reference to, an owned String inside an owned Vec?

rust

Passing a Rust variable to a C function that expects to be able to modify it

c rust ffi

How do I add references to a container when the borrowed values are created after the container?

rust borrow-checker

Why does "can't leak private type" only apply to structs and not enums?

Is there a way to match two enum variants and also bind the matched variant to a variable?

rust

Creating environment for closure in a macro in Rust

rust rust-macros

What does an @ symbol mean in a Rust declarative macro?

How do I convert a SystemTime to ISO 8601 in Rust?

Rust lifetime error expected concrete lifetime but found bound lifetime

reference rust lifetime

Is &[T] literally an alias of Slice in rust?

rust

Does Rust have an equivalent to Python's unichr() function?

rust

Passing mutable self reference to method of owned object

rust borrow-checker

Why are all indexes in Rust of type usize?

indexing rust

In Rust, what's the difference between "{}" and "{:?}" inside a println!? [duplicate]

rust

What is the correct term for _ in a type hint?

Check if a float can be converted to integer without loss

rust idioms