pub enum PlayerResponseError {
NoInitialPlayerResponse,
ParseInitialPlayerResponse(Error),
NoDashManifestURL,
DownloadDashManifestError(DownloadError),
ParseDashManifestError(Error),
}Variants§
NoInitialPlayerResponse
ParseInitialPlayerResponse(Error)
NoDashManifestURL
DownloadDashManifestError(DownloadError)
ParseDashManifestError(Error)
Trait Implementations§
Source§impl Debug for PlayerResponseError
impl Debug for PlayerResponseError
Source§impl Display for PlayerResponseError
impl Display for PlayerResponseError
Source§impl Error for PlayerResponseError
impl Error for PlayerResponseError
Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§impl From<DownloadError> for PlayerResponseError
impl From<DownloadError> for PlayerResponseError
Source§fn from(source: DownloadError) -> Self
fn from(source: DownloadError) -> Self
Converts to this type from the input type.
Source§impl From<Error> for PlayerResponseError
impl From<Error> for PlayerResponseError
Source§impl From<Error> for PlayerResponseError
impl From<Error> for PlayerResponseError
Source§impl From<PlayerResponseError> for WorkerError
impl From<PlayerResponseError> for WorkerError
Source§fn from(source: PlayerResponseError) -> Self
fn from(source: PlayerResponseError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for PlayerResponseError
impl !RefUnwindSafe for PlayerResponseError
impl Send for PlayerResponseError
impl Sync for PlayerResponseError
impl Unpin for PlayerResponseError
impl !UnwindSafe for PlayerResponseError
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more