Rust

All about the Rust

Automatic Type Casting in Rust

Many modern languages support automatic type casting from one type to another, But Rust does not allow this feature, and any attempt to assign cross types values will result in a compiler error. let us understand this with below example : So if you attempt to assign values like this , Rust compiler will flag …

Automatic Type Casting in Rust Read More »

How to Install Rust on windows?

In this post, we are going to learn How to Install Rust on windows? The first step towards learning a new language is to install its tools and components. To start Rust installations we will start with ‘rustup’ which is a command-line tool. This tool manages the Rust components and their versions installed on your …

How to Install Rust on windows? Read More »