Skip to main content

Courses in category Rust

Showing 115 of 15 courses

  • Crusty Interpreter

    Crusty Interpreter

    Study creating an interpreter in Rust using the book "Crafting Interpreters." This course is for experienced developers who wish to deepen their knowledge...
    33 hours 53 minutes 10 seconds
  • Ultimate Rust 2: Intermediate Concepts

    Ultimate Rust 2: Intermediate Concepts

    Master the Rust language: delve into variables, functions, and memory structure. For system developers looking to create safe and fast code.
    5 hours 1 minute 56 seconds
  • Ultimate Rust Crash Course

    Ultimate Rust Crash Course

    Learn the basics of Rust, gain practical skills for writing safe and fast code. The course is suitable for both beginners and experienced programmers.
    2 hours 26 minutes 32 seconds
  • Let’s Rust

    Let’s Rust

    Take the Let's Rust course and develop an ML service in Rust. Train the model, create a REST API for predictions, and deploy the service in Kubernetes.
    12 hours 40 minutes 9 seconds
  • Rust for Beginners

    Rust for Beginners

    Do you want to try Rust but don't know where to start? This course will be your starting point. Whether you have programming experience or not...
    3 hours 18 minutes 19 seconds
  • Rust Programming: The Complete Developer's Guide

    Rust Programming: The Complete Developer's Guide

    Learn the Rust programming language from scratch! Learn how to code & build real-world applications using Rust so that you can get hired and be recognized as a
    25 hours 37 minutes 12 seconds
  • Transform Your Craft with TDD: Master clean code and testing

    Transform Your Craft with TDD: Master clean code and testing

    Do you want to learn TDD but don't know where to start? "Прокачай свой код с TDD" (Enhance Your Code with TDD) is a beginner-friendly e-book and video...
    4 hours 7 minutes 36 seconds
  • Rust: The Complete Developer's Guide

    Rust: The Complete Developer's Guide

    Welcome to the most comprehensive and practical course for learning Rust from scratch! Rust is changing the approach to systems programming with its focus on...
    9 hours 25 minutes 40 seconds
  • Rust as a Service

    Rust as a Service

    This course teaches integrating Rust into service-oriented architectures, covering REST server development, data handling, error management, and modularization. You'll learn tra...
    6 hours 13 minutes 47 seconds
  • Rust from C/C++

    Rust from C/C++

    This course bridges the transition from C and C++ to Rust by highlighting their similarities and differences. Exploring Rust's native compilation, memory manage
    5 hours 31 minutes 48 seconds
  • Ultimate Rust Best Practices

    Ultimate Rust Best Practices

    This course covers many best practices to help you with integrate Rust into your workflow, and let Rust’s tooling work for you. It includes formatting, linting, dependencies, vu...
    1 hour 39 minutes 25 seconds
  • Ultimate Rust: Foundations - Next Steps

    Ultimate Rust: Foundations - Next Steps

    This course offers the next steps not covered in Ultimate Rust: Foundations that expand on and optimize what you’ve already built.
    50 minutes 48 seconds
  • Ultimate Rust Foundations

    Ultimate Rust Foundations

    Ultimate Rust: This course covers many best practices to help you integrate Rust into your workflow, and let Rust’s tooling work for you. It includes formatting, linting, depend...
    17 hours 53 minutes 36 seconds
  • Rust Developer Bootcamp

    Rust Developer Bootcamp

    Who is this Bootcamp for? Experienced Developers trying to switch to Rust. Learn the language of the future. Your time is valuable (literally, $148,688/yr). Learn Rust FAST with...
    9 hours 50 minutes 20 seconds
  • Rust: Building Reusable Code with Rust from Scratch

    Rust: Building Reusable Code with Rust from Scratch

    Rust is a systems programming language with a focus on safety, especially safe concurrency, supporting both functional and imperative paradigms, syntactically similar to C++, bu...
    6 hours 17 minutes 32 seconds
Rust

Rust

Rust is a low-level language, and the compiler produces a binary output that does not require additional tricks to work. All the logic for removing unnecessary objects is integrated into the code at compile time, so there is no run-time garbage collector. Rust also has no empty references and is type safe, which makes it even more reliable than Java.