Rust Revealed: The Programmer’s Guide to Modern System Development VOL-II (eBook)

Rust Revealed: The Programmer’s Guide to Modern System Development VOL-II (eBook)

anshuMishra Anshuman
anshuMishra Anshuman
Prezzo:
€ 3,49
Compra EPUB
Prezzo:
€ 3,49
Compra EPUB

Formato

:
EPUB
Cloud: Scopri di più
Compatibilità: Tutti i dispositivi
Lingua: en
Editore: Anshuman Mishra
Codice EAN: 9798231224432
Anno pubblicazione: 2025
Scopri QUI come leggere i tuoi eBook
Abbonati a Kobo Plus per avere accesso illimitato a migliaia di eBook

Note legali

NOTE LEGALI

a) Garanzia legale, Pagamenti, Consegne, Diritto di recesso
b) Informazioni sul prezzo
Il prezzo barrato corrisponde al prezzo di vendita al pubblico al lordo di IVA e al netto delle spese di spedizione
Il prezzo barrato dei libri italiani corrisponde al prezzo di copertina.
I libri in inglese di Libraccio sono di provenienza americana o inglese.
Libraccio riceve quotidianamente i prodotti dagli USA e dalla Gran Bretagna, pagandone i costi di importazione, spedizione in Italia ecc.
Il prezzo in EURO è fissato da Libraccio e, in alcuni casi, può discostarsi leggermente dal cambio dollaro/euro o sterlina/euro del giorno. Il prezzo che pagherai sarà quello in EURO al momento della conferma dell'ordine.
In ogni caso potrai verificare la convenienza dei nostri prezzi rispetto ad altri siti italiani e, in moltissimi casi, anche rispetto all'acquisto su siti americani o inglesi.
c) Disponibilità
I termini relativi alla disponibilità dei prodotti sono indicati nelle Condizioni generali di vendita.

Disponibilità immediata
L'articolo è immediatamente disponibile presso Libraccio e saremo in grado di procedere con la spedizione entro un giorno lavorativo.
Nota: La disponibilità prevista fa riferimento a singole disponibilità.

Disponibile in giorni o settimane (ad es. "3-5-10 giorni", "4-5 settimane" )
L'articolo sarà disponibile entro le tempistiche indicate, necessarie per ricevere l'articolo dai nostri fornitori e preparare la spedizione.
Nota: La disponibilità prevista fa riferimento a singole disponibilità.

Prenotazione libri scolastici
Il servizio ti permette di prenotare libri scolastici nuovi che risultano non disponibili al momento dell'acquisto.

Attualmente non disponibile
L'articolo sarà disponibile ma non sappiamo ancora quando. Inserisci la tua mail dalla scheda prodotto attivando il servizio Libraccio “avvisami” e sarai contattato quando sarà ordinabile.

Difficile reperibilità
Abbiamo dei problemi nel reperire il prodotto. Il fornitore non ci dà informazioni sulla sua reperibilità, ma se desideri comunque effettuare l'ordine, cercheremo di averlo nei tempi indicati. Se non sarà possibile, ti avvertiremo via e-mail e l'ordine verrà cancellato.
Chiudi

Descrizione

"Rust Revealed: The Programmer's Guide to Modern Systems Development" is an in-depth, comprehensive, and practical exploration of one of the most exciting programming languages of the 21st century—Rust. Designed for developers at all stages of their careers, this book delves deep into the language's core philosophies, memory safety, concurrency, performance, and real-world applications. It is tailored to not just teach Rust syntax and features but to cultivate a Rustacean mindset capable of crafting reliable, efficient, and modern software systems. Rust has risen rapidly in popularity, championed for its zero-cost abstractions, fearless concurrency, and powerful type system that ensures memory safety without needing a garbage collector. This book is both a guide and a mentor to anyone serious about mastering the Rust language and applying it to create high-performance and secure applications. Whether you are a beginner, a system-level programmer, or a web developer wanting to explore Rust, this book will be one-stop resource for practical insights, real-world examples, and foundational understanding of the language. Why Rust? Rust is not just another programming language; it's a modern systems programming language designed to solve the most pressing issues in software development—safety, speed, and concurrency. Memory Safety: Rust guarantees memory safety at compile time through its unique ownership model. Say goodbye to null pointer dereferencing, use-after-free errors, and data races. Concurrency: With its Send and Sync traits, Rust encourages fear-free concurrency without compromising performance or safety. Performance: Rust programs are blazingly fast and comparable in speed to C and C++ thanks to zero-cost abstractions and fine-grained memory control. Ecosystem: With tools like Cargo, rustup, and crates.io, Rust provides a delightful developer experience from package management to dependency resolution. Community and Adoption: From startups to giants like Microsoft, Google, and Dropbox, Rust is being adopted industry-wide. This book encapsulates these features with real-world scenarios and step-by-step guidance, helping you write first Rust program and eventually deploy complete systems in production. What You Will Learn This book is divided into six structured parts, covering all aspects of Rust from the basics to advanced-level programming: Part IV: Intermediate and Advanced Rust Introduction to generics, trait bounds, and lifetimes Understanding and using traits, impl blocks, and operator overloading Functional programming with closures and iterators Smart pointers: Box, Rc, Arc, RefCell, and interior mutability Multithreading, message passing, and shared memory concurrency Unsafe Rust: when and how to use it responsibly Part V: Real-World Rust Building CLI apps with argument parsing, file I/O, and environment variables Web development using Rocket or Actix frameworks Creating REST APIs, handling middleware, and JSON serialization Asynchronous programming using async/await and runtimes like tokio Working with SQL databases using Diesel or SQLx Writing unit, integration, and property-based tests Benchmarking and performance analysis