Enum rodio::StreamError
source · pub enum StreamError {
PlayStreamError(PlayStreamError),
DefaultStreamConfigError(DefaultStreamConfigError),
BuildStreamError(BuildStreamError),
SupportedStreamConfigsError(SupportedStreamConfigsError),
NoDevice,
}
Variants§
PlayStreamError(PlayStreamError)
DefaultStreamConfigError(DefaultStreamConfigError)
BuildStreamError(BuildStreamError)
SupportedStreamConfigsError(SupportedStreamConfigsError)
NoDevice
Trait Implementations§
source§impl Debug for StreamError
impl Debug for StreamError
source§impl Display for StreamError
impl Display for StreamError
source§impl Error for StreamError
impl Error for StreamError
source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
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<BuildStreamError> for StreamError
impl From<BuildStreamError> for StreamError
source§fn from(err: BuildStreamError) -> Self
fn from(err: BuildStreamError) -> Self
Converts to this type from the input type.
source§impl From<DefaultStreamConfigError> for StreamError
impl From<DefaultStreamConfigError> for StreamError
source§fn from(err: DefaultStreamConfigError) -> Self
fn from(err: DefaultStreamConfigError) -> Self
Converts to this type from the input type.
source§impl From<PlayStreamError> for StreamError
impl From<PlayStreamError> for StreamError
source§fn from(err: PlayStreamError) -> Self
fn from(err: PlayStreamError) -> Self
Converts to this type from the input type.
source§impl From<SupportedStreamConfigsError> for StreamError
impl From<SupportedStreamConfigsError> for StreamError
source§fn from(err: SupportedStreamConfigsError) -> Self
fn from(err: SupportedStreamConfigsError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl RefUnwindSafe for StreamError
impl Send for StreamError
impl Sync for StreamError
impl Unpin for StreamError
impl UnwindSafe for StreamError
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