pub type CspResult<T> = Result<T, CspError>;
Result type for CSP operations
pub enum CspResult<T> { Ok(T), Err(CspError), }
Contains the success value
Contains the error value