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