ViewTube

ViewTube
Sign inSign upSubscriptions
Filters

Upload date

Type

Duration

Sort by

Features

Reset

10,712 results

Let's Get Rusty
Error Handling in Rust

Grab your Rust Job-Ready Roadmap (free): https://letsgetrusty.com/join The fastest way to become a Rust dev (limited seats): ...

16:20
Error Handling in Rust

112,447 views

4 years ago

Jeremy Chone
Rust Error Handling - Best Practices

Here are some best practices for error handling in Rust programming that I've found effective: - For tests and examples, use "box ...

21:33
Rust Error Handling - Best Practices

43,358 views

1 year ago

Max Taylor
Rust Error Handling: A Practical Guide to Result

In this video, we'll explore the Result type in Rust—what it is, when to use it, and the best practices for handling errors effectively.

6:40
Rust Error Handling: A Practical Guide to Result

2,965 views

10 months ago

Flo Woelki
Rust error handling made easier with the ?-operator

One single operator in Rust reduces your error handling code by three lines and is even more intuitive. Also, understanding the ...

7:52
Rust error handling made easier with the ?-operator

4,582 views

1 year ago

Let's Get Rusty
A new way of error handling in Rust

Grab your Rust Job-Ready Roadmap (free): https://letsgetrusty.com/join The fastest way to become a Rust dev (limited seats): ...

4:17
A new way of error handling in Rust

61,690 views

3 years ago

The Dev Method
Rust: Error Handling

rust #errors #panic There are two groups of errors: recoverable and unrecoverable. Errors are a part of programming and every ...

19:16
Rust: Error Handling

18,039 views

3 years ago

Let's Get Rusty
Simple error handling in Rust

Grab your Rust Job-Ready Roadmap (free): https://letsgetrusty.com/join The fastest way to become a Rust dev (limited seats): ...

23:46
Simple error handling in Rust

35,571 views

3 years ago

Logan Smith
A Simpler Way to See Results

Result is Rust's error handling type that is often discussed in the same (or similar) breath as Option, but it feels... scarier. But in this ...

19:17
A Simpler Way to See Results

165,499 views

2 years ago

Rust Programming Language
RustConf 2020 - Error handling Isn't All About Errors by Jane Lusby

Error handling Isn't All About Errors by Jane Lusby Error handling in rust is incredibly diverse and constantly evolving. As such it is ...

28:48
RustConf 2020 - Error handling Isn't All About Errors by Jane Lusby

30,643 views

5 years ago

People also watched

NDC Conferences
Learning Rust the wrong way - Ólafur Waage - NDC TechTown 2022

Approaching a new language can be scary and time consuming. The author has been a C++ programmer for quite some time and ...

51:54
Learning Rust the wrong way - Ólafur Waage - NDC TechTown 2022

126,842 views

3 years ago

Rust Programming Language
Boxes, Heaps, and Stacks - Tim McNamara - Rust Linz, September 2022

When I learned Rust, I was a Python programmer. This meant that I had no idea what a pointer was. Luckily, the Rust compiler is a ...

41:18
Boxes, Heaps, and Stacks - Tim McNamara - Rust Linz, September 2022

31,987 views

3 years ago

Rust Programming Language
Rust Linz, October 2020 - Valentin Tolmer - How not to rely on inheritance

How not to rely on inheritance As opposed to many languages, Rust doesn't have a concept of inheritance, relying instead on ...

44:17
Rust Linz, October 2020 - Valentin Tolmer - How not to rely on inheritance

14,853 views

5 years ago

Let's Get Rusty
Rust for Dummies in 12 Minutes

Grab your Rust Job-Ready Roadmap (free): https://letsgetrusty.com/join The fastest way to become a Rust dev (limited seats): ...

12:30
Rust for Dummies in 12 Minutes

237,538 views

7 months ago

Byron's Devlog
LGR-08: Anyhow, from Results to Errors

Links: https://github.com/Byron/gitoxide https://github.com/Byron/learning-rust-with-gitoxide.

40:27
LGR-08: Anyhow, from Results to Errors

1,599 views

4 years ago

Bocksdin Coding
Box / Rc / Arc / Mutex - Smart Pointers Simplified - Rust

Rust is a language that uses smart pointers extensively. The most common of which are Box, Rc, Arc, and Mutex. In this video I'll ...

23:39
Box / Rc / Arc / Mutex - Smart Pointers Simplified - Rust

19,509 views

3 years ago

Learning Rust
Anyhow ... | Rust Language

Learning Rust, plus a quick look at 'anyhow' to handle errors and a look at what Rust concepts, patterns and topics I've learned in ...

8:04
Anyhow ... | Rust Language

1,017 views

2 years ago

Anthony GG
Golang Error Handling Is Better Than You Think!

Join my Discord community for free education https://discord.com/invite/bDy8t4b3Rz ▻ Become a Patreon for exclusive ...

18:53
Golang Error Handling Is Better Than You Think!

32,149 views

2 years ago

Boy Maas
Rust - Which error-handling crate to use? ErrorTypes, thiserror & anyhow

A programming language's solution to error handling significantly influences the robustness, brevity, readability and – to an extent ...

8:07
Rust - Which error-handling crate to use? ErrorTypes, thiserror & anyhow

15,158 views

5 years ago

No Boilerplate
Async Isn't Real & Cannot Hurt You

I have explained the joy of rust at length on my channel, HOWEVER, some of what I have mentioned breaks down when ...

10:43
Async Isn't Real & Cannot Hurt You

149,337 views

5 months ago

Ardan Labs
Mastering Error Handling in Rust: From Panics to thiserror & anyhow | with Nathan Stocks

Panics, Results, and error crates—oh my! Confused about how to handle errors in Rust? You're not alone. Rust gives you ...

1:13:46
Mastering Error Handling in Rust: From Panics to thiserror & anyhow | with Nathan Stocks

1,452 views

Streamed 2 months ago

Rust Programming Language
Rust Linz, January '22 - Error Handling in Rust - A Pragmatic Approach by Luca Palmieri

Luca's talk is based on this article: https://www.lpalmieri.com/posts/error-handling-rust/ Rust does not rely on exceptions - errors ...

33:41
Rust Linz, January '22 - Error Handling in Rust - A Pragmatic Approach by Luca Palmieri

24,749 views

3 years ago

timClicks
4 levels of Rust error handling

Strengthen your code one level at a time. Rust's errors can be confusing. Learn how to start with an easy path and grow as you ...

46:35
4 levels of Rust error handling

11,416 views

2 years ago

Green Tea Coding
Best built in ERROR HANDLING? | Rust Fundamentals Part 10

Rust offers two powerful options for handling errors: panic! for non-recoverable errors, and Result for recoverable errors. In this ...

17:14
Best built in ERROR HANDLING? | Rust Fundamentals Part 10

1,405 views

2 years ago

RustLab Conference
Don't panic! - Our journey to error handling in Rust - Tomer Cohen

FOLLOW RUSTLAB CHANNEL ABSTRACT: In this talk, I will delve into the transformative journey of error handling in our first ...

31:00
Don't panic! - Our journey to error handling in Rust - Tomer Cohen

1,133 views

1 year ago

Semicolon
Rust Error Handling Explained: thiserror vs anyhow (Best Practices)

Struggling to choose between thiserror and anyhow for error handling in Rust? In this video, we break down the key differences, ...

15:53
Rust Error Handling Explained: thiserror vs anyhow (Best Practices)

4,617 views

1 year ago

Ritual Coding
Rust Programming 5: Error handling

rust #coding #programming Source link - https://bit.ly/3yuu8L1 Photo by Marcin Jozwiak ...

8:22
Rust Programming 5: Error handling

260 views

3 years ago

ArjanCodes
Rust Handles Errors Way Better Than Python

In this video, I'll show you how Rust handles errors and when to use which type of error handling, based on my own experience.

17:48
Rust Handles Errors Way Better Than Python

19,351 views

1 year ago

Smart Contract Programmer
Handle Error | Learn Rust part 18

Error handling in Rust 0:00 Intro 0:15 Option 2:17 Result Code https://github.com/t4sk/hello-rust Course ...

5:18
Handle Error | Learn Rust part 18

1,480 views

11 months ago

Francesco Ciulla
Rust Error Handling: When to Use panic! vs Result Explained - Full Crash Rust Tutorial for Beginners

By the end of this video, you will clearly understand when to use panic! and when to use Result in Rust. We start with a quick ...

9:56
Rust Error Handling: When to Use panic! vs Result Explained - Full Crash Rust Tutorial for Beginners

8,180 views

1 year ago

Tensor Programming
Intro to Rust-lang (Error Handling)

In this video, we look at how we can use the Result and Option Enums to deal with Errors in Rust. We also look at some of the ...

10:32
Intro to Rust-lang (Error Handling)

12,259 views

8 years ago