Menu
×
   ❮   
HTML CSS JAVASCRIPT SQL PYTHON JAVA PHP C C++ C# AWS W3.CSS HOW TO BOOTSTRAP REACT MYSQL JQUERY EXCEL XML DJANGO NUMPY PANDAS NODEJS DSA TYPESCRIPT ANGULAR ANGULARJS GIT POSTGRESQL MONGODB ASP AI R GO KOTLIN SWIFT SASS VUE GEN AI SCIPY CYBERSECURITY DATA SCIENCE INTRO TO PROGRAMMING HTML & CSS BASH RUST TOOLS

Rust Data Types


Share

Data Types

Unlike many other programming languages, variables in Rust do not need to be declared with a specified type (like "String" for text or "Int" for numbers, if you are familiar with those from C or Java).

In Rust, the type of a variable is decided by the value you give it. Rust looks at the value and automatically chooses the right type:

Example

let my_num = 5;         // integer
let my_double = 5.99;   // float
let my_letter = 'D';    // character
let my_bool = true;     // boolean
let my_text = "Hello";  // string
Try it Yourself »

However, it is possible to explicitly tell Rust what type a value should be:

Example

let my_num: i32 = 5;          // integer
let my_double: f64 = 5.99;    // float
let my_letter: char = 'D';    // character
let my_bool: bool = true;     // boolean
let my_text: &str = "Hello";  // string
Try it Yourself »

You will learn more about when you need to specify the type later in this tutorial. Either way, it is good to understand what the different types mean.

Basic data types in Rust are divided into different groups:

  • Numbers - Whole numbers and decimal numbers (i32, u32, f64)
  • Characters - Single letters or symbols (char)
  • Strings - Text, a sequence of characters (&str)
  • Booleans - True or false values (bool)

Numbers

Number types are divided into two groups: integer types and floating point types.

Integers (i32 and u32)

Integer types are used to store whole numbers without decimals.

Two common integer types are i32 and u32:

  • i32 can store positive and negative whole numbers
  • u32 can only store zero or positive whole numbers

Example

let temperature: i32 = -5;
let age: u32 = 25;

println!("Temperature: {}", temperature);
println!("Age: {}", age);
Try it Yourself »

The u in u32 means unsigned, which means the value cannot be negative. This makes u32 useful for values such as age, counts, and sizes.

Floating Point (f64)

The f64 type is used to store numbers containing one or more decimals:

Example

let price: f64 = 19.99;
println!("Price is: ${}", price);
Try it Yourself »


Characters (char)

The char type is used to store a single character. A char value must be surrounded by single quotes, like 'A' or 'c':

Example

let myGrade: char = 'B';
println!("{}", myGrade);
Try it Yourself »

Strings (&str)

The &str type is used to store a sequence of characters (text). String values must be surrounded by double quotes:

Example

let name: &str = "John";
println!("Hello, {}!", name);
Try it Yourself »

Booleans (bool)

The bool type can only take the values true or false:

Example

let is_logged_in: bool = true;
println!("User logged in? {}", is_logged_in);
Try it Yourself »

Combining Data Types

You can mix different types in the same program:

Example

let name = "John";
let age = 28;
let is_admin = false;
println!("Name: {}", name);
println!("Age: {}", age);
println!("Admin: {}", is_admin);
Try it Yourself »

Free account

Track your progress

XP earned 0 Day streak 0 Spaces 0 League

New

Learn in Adventure Mode W3Schools Adventure App

Coding fundamentals as bite-sized lessons and challenges.

×

Contact Sales

If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
sales@w3schools.com

Report Error

If you want to report an error, or if you want to make a suggestion, send us an e-mail:
help@w3schools.com

W3Schools is optimized for learning and training. Examples might be simplified to improve reading and learning. Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness of all content. While using W3Schools, you agree to have read and accepted our terms of use, cookies and privacy policy.

Copyright 1999-2026 by Refsnes Data. All Rights Reserved. W3Schools is Powered by W3.CSS.