Enum servo_media_audio::sink::AudioSinkError
source · pub enum AudioSinkError {
Backend(String),
BufferPushFailed,
StateChangeFailed,
}
Variants§
Backend(String)
Backend specific error.
BufferPushFailed
Could not push buffer into the audio sink.
StateChangeFailed
Could not move to a different state.
Trait Implementations§
source§impl Debug for AudioSinkError
impl Debug for AudioSinkError
source§impl PartialEq for AudioSinkError
impl PartialEq for AudioSinkError
source§fn eq(&self, other: &AudioSinkError) -> bool
fn eq(&self, other: &AudioSinkError) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for AudioSinkError
Auto Trait Implementations§
impl Freeze for AudioSinkError
impl RefUnwindSafe for AudioSinkError
impl Send for AudioSinkError
impl Sync for AudioSinkError
impl Unpin for AudioSinkError
impl UnwindSafe for AudioSinkError
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