pub type Result<T> = Result<T, ScnrError>;
The result type for the scrn crate.
scrn
enum Result<T> { Ok(T), Err(ScnrError), }
Contains the success value
Contains the error value