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