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