Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in rust

How do I free a *char allocated via FFI in Rust?

rust ffi

Return value from match to Err(e)

rust

Default generic parameter

rust traits

How do I get a substring between two patterns in Rust?

string rust

How do I iterate over elements of a struct in Rust?

rust

Why do Rust's operators have the type Output variable? [duplicate]

Why can't I mutably borrow a primitive from an enum?

enums rust borrow-checker

Why can I use Ok and Err directly without the Result:: prefix?

enums rust

Why does the compiler not complain that an iterator moved to a for loop is immutable?

rust move-semantics

How do I multiply an integer and a floating value together and display the result as a floating value in Rust? [duplicate]

rust

Why does a &str not coerce to a &String when using Vec::contains?

string rust

Is there a way to use existing structs as enum variants?

rust

Why is it common to use dynamic errors in rust, and not enums? Is it bad/not possible to use compile-time variants?

Unable to stop my Docker container with Ctrl-C

How do I get the value and type of a Literal in a procedural macro?

rust rust-proc-macros

Understanding usage of Rc<RefCell<SomeStruct>> in Rust

rust

How to pad an array with zeros?

rust rust-macros

Rust String concatenation [duplicate]

string rust

How can I get the last item in a BTreeMap?

rust b-tree

Implement foreign trait for foreign type [duplicate]

rust