1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
//! Utilities provided by `Scion` to help to do some basic stuff. pub mod file; pub mod logger; pub mod maths; #[derive(Debug)] #[allow(dead_code)] pub struct ScionError { details: String } impl ScionError { pub fn new(msg: &str) -> Self { Self{details: msg.to_string()} } }