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