SlideShare a Scribd company logo
WHEN TO RUST
A discussion about the rust programming language
1
WHAT WE WILL TALK ABOUT
Brief history of rust
Strengths of rust
When to use rust
2
HISTORY
2006 personal project
Probably named a er fungus (author doesn't
remember)
Mozilla sponsored in 2009
1.0 in 2012
Sponsored for servo, made for safety
3
STRENGTHS
4
SAFETY
Memory safe
Data race safe
5 . 1
MEMORY SAFETY
Doesn't memory leak( )
No use a er free
No buffer overflow
No double free
No null derefrencing
example: , ,
sort of...
1 2 3
5 . 2
DATA RACE SAFETY
Mutable shared state only accessable by one thread
at a time
Doesn't prevent deadlocks or double access
problems (not perfect)
5 . 3
GREAT TOOLS
Cargo - Package manager
Clippy - Code linting
rustfmt - Code formatting
rls + racer - IDE hints (code completion, refactoring)
6
GREAT DOCUMENTATION
Intro book
API docs
Rustonomicon (dark arts)
7
STABILITY
Crater - Test future compiler changes against the
current ecosystem
Nightly, Beta, Stable releases
Stability as a Deliverable
8
MOVES FAST
Open RFC process allows new features to come from
6 week releases allows features to flow into the
language quickly
Stability guarentees keeps new features from
breaking old code
anywhere
9
RUST, HUH, WHAT IS IT GOOD
FOR
(ABSOLUTELY SOMETHING)
10
BROWSERS!
11 . 1
WEB SERVERS!
11 . 2
PACKAGE MANAGERS
SERVERS!
11 . 3
ANYWHERE!
Rust is young and powerful
For predictability, it can't be beat!
11 . 4
QUESTIONS?
12

More Related Content

PDF
A small introduction to rust language
PPTX
PPTX
Apples and Oranges-- Introductory Comparison between PHP and Python
PDF
Why Rust? - Matthias Endler - Codemotion Amsterdam 2016
PDF
Radare2 - An Introduction by Anto Joseph
PDF
Updates of socket.io@1.0
PPT
Rust Programming Language
PDF
Deep drive into rust programming language
A small introduction to rust language
Apples and Oranges-- Introductory Comparison between PHP and Python
Why Rust? - Matthias Endler - Codemotion Amsterdam 2016
Radare2 - An Introduction by Anto Joseph
Updates of socket.io@1.0
Rust Programming Language
Deep drive into rust programming language

Similar to When to rust (20)

PDF
Lisbon rust lang meetup#1
PDF
Introduction to OpenSolaris 2008.11
PDF
.NET RDF APIs
PDF
BUD17-104: Scripting Languages in IoT: Challenges and Approaches
PDF
Why and what is go
PPT
Drizzle Keynote from O'Reilly's MySQL's Conference
PDF
Infrastructure as code might be literally impossible part 2
PDF
Unikernels - Bristech June 2016
ODP
Concurrent Programming with Ruby and Tuple Spaces
PDF
Fedora Modularity
PPT
ApacheCon NA 2011 report
PDF
Максим Мельников - FOSDEM 2014 overview
PDF
FOSDEM 2014 Overview
PDF
FOSDEM 2014
PDF
(元)コミュニティメンバーから見たMozilla / Firefoxの歴史と展望@Browser Workshop
PDF
Efficient logging in multithreaded C++ server
PDF
Brno Perl Mongers 28.5.2015 - Perl family by mj41
PPTX
510Lec01-Overview.pptx
ODP
New Oracle Infrastructure2
ODP
My first FOSDEM experience
Lisbon rust lang meetup#1
Introduction to OpenSolaris 2008.11
.NET RDF APIs
BUD17-104: Scripting Languages in IoT: Challenges and Approaches
Why and what is go
Drizzle Keynote from O'Reilly's MySQL's Conference
Infrastructure as code might be literally impossible part 2
Unikernels - Bristech June 2016
Concurrent Programming with Ruby and Tuple Spaces
Fedora Modularity
ApacheCon NA 2011 report
Максим Мельников - FOSDEM 2014 overview
FOSDEM 2014 Overview
FOSDEM 2014
(元)コミュニティメンバーから見たMozilla / Firefoxの歴史と展望@Browser Workshop
Efficient logging in multithreaded C++ server
Brno Perl Mongers 28.5.2015 - Perl family by mj41
510Lec01-Overview.pptx
New Oracle Infrastructure2
My first FOSDEM experience
Ad

Recently uploaded (20)

PDF
Addressing The Cult of Project Management Tools-Why Disconnected Work is Hold...
PPTX
Oracle E-Business Suite: A Comprehensive Guide for Modern Enterprises
PPTX
L1 - Introduction to python Backend.pptx
PDF
Odoo Companies in India – Driving Business Transformation.pdf
PDF
How Creative Agencies Leverage Project Management Software.pdf
PPTX
Lecture 3: Operating Systems Introduction to Computer Hardware Systems
PPTX
Reimagine Home Health with the Power of Agentic AI​
PPTX
Odoo POS Development Services by CandidRoot Solutions
PDF
wealthsignaloriginal-com-DS-text-... (1).pdf
PDF
Internet Downloader Manager (IDM) Crack 6.42 Build 41
PDF
AI in Product Development-omnex systems
PDF
System and Network Administraation Chapter 3
PDF
Nekopoi APK 2025 free lastest update
PDF
Adobe Illustrator 28.6 Crack My Vision of Vector Design
PDF
2025 Textile ERP Trends: SAP, Odoo & Oracle
PPTX
VVF-Customer-Presentation2025-Ver1.9.pptx
PDF
Raksha Bandhan Grocery Pricing Trends in India 2025.pdf
PDF
SAP S4 Hana Brochure 3 (PTS SYSTEMS AND SOLUTIONS)
PPTX
ai tools demonstartion for schools and inter college
PDF
Which alternative to Crystal Reports is best for small or large businesses.pdf
Addressing The Cult of Project Management Tools-Why Disconnected Work is Hold...
Oracle E-Business Suite: A Comprehensive Guide for Modern Enterprises
L1 - Introduction to python Backend.pptx
Odoo Companies in India – Driving Business Transformation.pdf
How Creative Agencies Leverage Project Management Software.pdf
Lecture 3: Operating Systems Introduction to Computer Hardware Systems
Reimagine Home Health with the Power of Agentic AI​
Odoo POS Development Services by CandidRoot Solutions
wealthsignaloriginal-com-DS-text-... (1).pdf
Internet Downloader Manager (IDM) Crack 6.42 Build 41
AI in Product Development-omnex systems
System and Network Administraation Chapter 3
Nekopoi APK 2025 free lastest update
Adobe Illustrator 28.6 Crack My Vision of Vector Design
2025 Textile ERP Trends: SAP, Odoo & Oracle
VVF-Customer-Presentation2025-Ver1.9.pptx
Raksha Bandhan Grocery Pricing Trends in India 2025.pdf
SAP S4 Hana Brochure 3 (PTS SYSTEMS AND SOLUTIONS)
ai tools demonstartion for schools and inter college
Which alternative to Crystal Reports is best for small or large businesses.pdf
Ad

When to rust