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