Rust

Rust

[Rust🦀]I analysed the error to make me level up as a Rust developer !!

# ownership and borrowing I'm always confused about which valuable has `ownership` or `borrowing`. The following code wa...
Rust

[Rust🦀] How To Pass The Closure To The Function Argument

For example `execute()` function can take the type of closure as `F` F defines `FnOnece() + Send + 'static` ('static is ...
General

[Programming]Multiple Producer Single Consumer (MPSC)

# What is MPSC? multiple entities (producers) generate or produce data, and a single entity (consumer) processes or cons...
Rust

[Rust🦀] Features Accomodating Everyday

Rust features Features of the language connect some &str variables Best way Use to_string() let str1 = "Hello, "; let st...