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