2ND
Handling Errors
Initializing search
    • Home
    • TODO
    • Tech Watchlist
    • Java: Basics
      • Database Pooling
      • N+1 Query
      • Android cost reduction
      • Caching
      • Database
      • Mysql collation errors
      • Copy or Move S3 Data Cross account
      • HTTPS on BeanStalk
      • deploy to EBS from github
      • Graphs
      • Josephus Problem
      • Linear Search Algorithm
      • Basics
      • HTTP Client
      • Observable
      • Templates
      • Analysis of Algorithms
      • System Design Basics
      • Code review
      • Pre-Commit: Format Code
      • JavaScript Object Prototype
      • React Native Notes
      • Singleton Pattern
      • URL Schema: Blob
      • fstab
      • Initramfs
      • Complete Ethical Hacking
      • Limit internet bandwidth
      • Rootfs
      • Intro to Rust
      • Slice Type
      • Structures
      • Structures: Method Syntax
      • Enum
      • Match Control flow
      • Concise Control Flow with if-let
      • Package Management
      • Vector in Rust
      • String in Rust
      • HashMaps in Rust
      • Cargo
      • Handling Errors
      • Guessing Game
      • Variables and Mutablity
      • Data Types
      • Functions
      • Control Flow
      • Ownership
      • References and Borrowing
      • Grep
      • Resume Writing
      • FFmpeg
      • Make and Makefile
      • MITMProxy
      • Regular Expression
      • Registers in Vim
      • Some Notes on Vim
      • SEO

    Handling Errors

    two kind of errors in Rust:

    • recoverable, which are of type Result<T, E>
    • unrecoverable, with panic!() macro
    Previous Cargo
    Next Guessing Game
    Made with Material for MkDocs