pub type Result<T> = Result<T, SupportKitError>;
enum Result<T> { Ok(T), Err(SupportKitError), }
Contains the success value
Contains the error value