Network Programming with Rust [Video]

Network Programming with Rust [Video]

English | MP4 | AVC 1920×1080 | AAC 48KHz 2ch | 2h 53m | 613 MB

Build fast and resilient network servers and clients by leveraging Rust’s memory-safety and concurrency features

Rust is low-level enough to provide fine-grained control over memory while providing safety through compile-time validation. This makes it uniquely suitable for writing low-level networking applications.

This course is divided into three main parts that will take you on an exciting journey of building a fully functional web server. Given the importance of security for modern systems, you will see how Rust supports common primitives such as TLS and public-key cryptography.

This course will get you started with building networking software in Rust by taking you through all the essential concepts. After watching this course, you will be more than confident enough to use Rust to build effective networking software

This course follows a step by step approach that will get you started with building networking software in Rust by taking you through all the essential concepts.

What You Will Learn

  • Appreciate why networking is important in implementing distributed systems
  • Write a non-asynchronous echo server over TCP
  • Parse JSON and binary data using parser combinators such as nom
  • Write an HTTP client that talks to the server using reqwest
  • Modify an existing Rust HTTTP server and add SSL to it
  • Master asynchronous programming support in Rust
  • Use external packages in a Rust project