Skip to content

Latest commit

 

History

History
11 lines (9 loc) · 805 Bytes

File metadata and controls

11 lines (9 loc) · 805 Bytes

Overview

A more comprehensive look into error handling in rust and how to properly handle the Result<> container. At times there may be a file read for the example.

  • Basic handling when a function can raise multiple errors.
    • basic_handling.rs]
    • This example takes the first command line argument as a file name to read, if sepcified, or defaults to reading R_multiflora.fna if nothing is provided.
  • Useful crates to extend error handling functionality