diff options
author | Irene Knapp <ireneista@gmail.com> | 2020-11-30 15:15:54 -0800 |
---|---|---|
committer | Irene Knapp <ireneista@gmail.com> | 2020-11-30 15:15:54 -0800 |
commit | 19c26ff3a05e3af0cb88c5f5ac5799e57dbf021c (patch) | |
tree | 3fdb62527b9c8f0f0756d484bfc43feb70d99da8 /lib | |
parent | 94f1a4f1245f69359aa6b1136742a0bbac3ae249 (diff) |
Initial Rust stuff
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Cargo.toml | 7 | ||||
-rw-r--r-- | lib/src/error.rs | 30 | ||||
-rw-r--r-- | lib/src/lib.rs | 11 | ||||
-rw-r--r-- | lib/src/prelude.rs | 4 |
4 files changed, 52 insertions, 0 deletions
diff --git a/lib/Cargo.toml b/lib/Cargo.toml new file mode 100644 index 0000000..f0a0859 --- /dev/null +++ b/lib/Cargo.toml @@ -0,0 +1,7 @@ +[package] +name = "advent_lib" +version = "0.1.0" +authors = ["Irene Knapp <ireneista@gmail.com>"] +edition = "2018" + +[dependencies] diff --git a/lib/src/error.rs b/lib/src/error.rs new file mode 100644 index 0000000..cd4a760 --- /dev/null +++ b/lib/src/error.rs @@ -0,0 +1,30 @@ +#[derive(Debug)] +pub enum Error { + IO(std::io::Error), +} + +impl std::error::Error for Error { } + +impl std::fmt::Display for Error { + fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + match self { + Error::IO(e) => e.fmt(f), + } + } +} + +impl std::cmp::PartialEq for Error { + fn eq(&self, other: &Self) -> bool { + match (self, other) { + (Error::IO(_), Error::IO(_)) => + false, + } + } +} + +impl From<std::io::Error> for Error { + fn from(e: std::io::Error) -> Error { + Error::IO(e) + } +} + diff --git a/lib/src/lib.rs b/lib/src/lib.rs new file mode 100644 index 0000000..b198f10 --- /dev/null +++ b/lib/src/lib.rs @@ -0,0 +1,11 @@ +pub mod error; +pub mod prelude; + +pub use crate::prelude::Result; + + +pub fn greeting() -> Result<()> { + println!("Hello, Irenes!"); + + Ok(()) +} diff --git a/lib/src/prelude.rs b/lib/src/prelude.rs new file mode 100644 index 0000000..a4e81eb --- /dev/null +++ b/lib/src/prelude.rs @@ -0,0 +1,4 @@ +use crate::error::Error; + +pub type Result<T> = std::result::Result<T, Error>; + |