Testing Rust

Testing Rust
The two pillars of rust are speed safety Rust built in safety features Borrow checker Type system Pattern matching Borrow checker The borrow checker is an useful feature of the Rust language. It help...
0 Read More

Rust Error Handling

Rust groups errors into two major categories: recoverable errors unrecoverable error Recoverable ErrorsWhen it is recoverable error then problem will report to the user and and retry the operation. Th...
0 Read More

Python to Rust - Some early thoughts

I have been following Rust for very long time, I tried to learn Rust at least 3 times in the past 5 years. Last time I started learning rust, v1.36 was just released. I always started to learn from th...
0 Read More

How to make your Tauri dev faster

Tauri lets us build cross-platform desktop apps using web stack. Compared to Electron, Tauri apps often have smaller bundle sizes and use less memory at runtime. That's why I usually pick Tauri for my...
0 Read More