pub enum SetVolumeError {
Io(Error),
}Variants§
Trait Implementations§
Source§impl Debug for SetVolumeError
impl Debug for SetVolumeError
Source§impl Display for SetVolumeError
impl Display for SetVolumeError
Source§impl Error for SetVolumeError
impl Error for SetVolumeError
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<Error> for SetVolumeError
impl From<Error> for SetVolumeError
Source§impl From<SetVolumeError> for Error
impl From<SetVolumeError> for Error
Source§fn from(source: SetVolumeError) -> Self
fn from(source: SetVolumeError) -> Self
Converts to this type from the input type.
Source§impl From<SetVolumeError> for PlayNowError
impl From<SetVolumeError> for PlayNowError
Source§fn from(source: SetVolumeError) -> Self
fn from(source: SetVolumeError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for SetVolumeError
impl !RefUnwindSafe for SetVolumeError
impl Send for SetVolumeError
impl Sync for SetVolumeError
impl Unpin for SetVolumeError
impl UnsafeUnpin for SetVolumeError
impl !UnwindSafe for SetVolumeError
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