From ef1bf4921ee4127d461eec03a14c9070d193345c Mon Sep 17 00:00:00 2001 From: Adam Carpenter Date: Mon, 11 Feb 2019 16:59:01 -0500 Subject: Init. --- errors/.gitignore | 2 ++ errors/Cargo.lock | 4 ++++ errors/Cargo.toml | 7 +++++++ errors/src/main.rs | 38 ++++++++++++++++++++++++++++++++++++++ 4 files changed, 51 insertions(+) create mode 100644 errors/.gitignore create mode 100644 errors/Cargo.lock create mode 100644 errors/Cargo.toml create mode 100644 errors/src/main.rs (limited to 'errors') diff --git a/errors/.gitignore b/errors/.gitignore new file mode 100644 index 0000000..53eaa21 --- /dev/null +++ b/errors/.gitignore @@ -0,0 +1,2 @@ +/target +**/*.rs.bk diff --git a/errors/Cargo.lock b/errors/Cargo.lock new file mode 100644 index 0000000..749984f --- /dev/null +++ b/errors/Cargo.lock @@ -0,0 +1,4 @@ +[[package]] +name = "errors" +version = "0.1.0" + diff --git a/errors/Cargo.toml b/errors/Cargo.toml new file mode 100644 index 0000000..e531a1b --- /dev/null +++ b/errors/Cargo.toml @@ -0,0 +1,7 @@ +[package] +name = "errors" +version = "0.1.0" +authors = ["Adam Carpenter "] +edition = "2018" + +[dependencies] diff --git a/errors/src/main.rs b/errors/src/main.rs new file mode 100644 index 0000000..1250677 --- /dev/null +++ b/errors/src/main.rs @@ -0,0 +1,38 @@ +use std::io; +use std::io::Read; +use std::fs::File; +//use std::io::ErrorKind; + +fn read_username_from_file() -> Result { +// let f = File::open("hello.txt"); +// let mut f = match f { +// Ok(file) => file, +// Err(e) => return Err(e), +// }; +// let mut s = String::new(); +// match f.read_to_string(&mut s) { +// Ok(_) => Ok(s), +// Err(e) => Err(e), +// } + let mut s = String::new(); + File::open("hello.txt")?.read_to_string(&mut s)?; + Ok(s) +} +fn main() { +// let f = File::open("hello.txt").map_err(|error| { +// if error.kind() == ErrorKind::NotFound { +// File::create("hello.txt").unwrap_or_else(|error| { +// panic!("Could not create file: {:?}", error); +// }) +// } +// else { +// panic!("Problem opening file: {:?}", error); +// } +// }); + + //let f = File::open("hello.txt").unwrap(); + + //let f = File::open("hello.txt").expect("failed to open hello.txt"); + + dbg!(read_username_from_file()); +} -- cgit v1.2.3