pub trait RTCErrorMethods {
    // Required methods
    fn ErrorDetail(&self) -> RTCErrorDetailType;
    fn GetSdpLineNumber(&self) -> Option<i32>;
    fn GetHttpRequestStatusCode(&self) -> Option<i32>;
    fn GetSctpCauseCode(&self) -> Option<i32>;
    fn GetReceivedAlert(&self) -> Option<u32>;
    fn GetSentAlert(&self) -> Option<u32>;
}

Required Methods§

Implementors§