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