Enum cpal::DevicesError
source · pub enum DevicesError {
BackendSpecific {
err: BackendSpecificError,
},
}
Expand description
An error that might occur while attempting to enumerate the available devices on a system.
Variants§
BackendSpecific
Fields
See the BackendSpecificError
docs for more information about this error variant.
Trait Implementations§
source§impl Clone for DevicesError
impl Clone for DevicesError
source§fn clone(&self) -> DevicesError
fn clone(&self) -> DevicesError
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for DevicesError
impl Debug for DevicesError
source§impl Display for DevicesError
impl Display for DevicesError
source§impl Error for DevicesError
impl Error for DevicesError
1.30.0 · 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<BackendSpecificError> for DevicesError
impl From<BackendSpecificError> for DevicesError
source§fn from(err: BackendSpecificError) -> Self
fn from(err: BackendSpecificError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl RefUnwindSafe for DevicesError
impl Send for DevicesError
impl Sync for DevicesError
impl Unpin for DevicesError
impl UnwindSafe for DevicesError
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