Divyansh Rai (@divyanshrai) | Rust

divyanshrai's cover image
Powered by FIFO
divyanshrai's image

Divyansh Rai

Software Engineer @GlueLabs

Followers32
Following37
Spaces15

Featured Links

In the last post, I discussed about scalar datatypes in rust https://fifo.im/p/pwp8i1js94g0 Today, I will throw some light on compound types:

DataTypes in Rust Rust is a statically typed language, which means that it must know the types of all variables at compile time. Today, I will throw some light on different datatypes (scalar) in rust

Variables & Mutability In Rust, by default variables are immutable. This is one of many nudges Rust gives you to write your code in a way that takes advantage of the safety and easy concurrency that Rust offers. However, you still have the option to make your variables mutable.

Rust is proving to be a productive tool for collaborating among large teams of developers with varying levels of systems programming knowledge. Cargo is the included dependency manager and build tool, that makes adding, compiling, and managing dependencies painless and consistent across the Rust ecosystem.