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... 2024.01.20 Rust
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 ... 2024.01.20 Rust
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... 2024.01.20 GeneralRust
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... 2024.01.19 Rust未分類