pub enum ProtocolExtensionError {
Caps,
Cmd,
Mixer,
RouterEntry,
Peak,
Router,
StreamFormatEntry,
StreamFormat,
CurrentConfig,
Appl,
Standalone,
Invalid(i32),
}
Expand description
Any error of protocol extension.
Variants§
Caps
Capability.
Cmd
Command.
Mixer
Mixer.
RouterEntry
Entry of router.
Peak
Peak.
Router
Router.
StreamFormatEntry
Entry of stream format.
StreamFormat
Stream format configuration.
CurrentConfig
Current configurations.
Appl
Application specific configuration.
Standalone
Stand alone configuration.
Invalid(i32)
Trait Implementations§
Source§impl Clone for ProtocolExtensionError
impl Clone for ProtocolExtensionError
Source§fn clone(&self) -> ProtocolExtensionError
fn clone(&self) -> ProtocolExtensionError
Returns a duplicate 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 ProtocolExtensionError
impl Debug for ProtocolExtensionError
Source§impl Display for ProtocolExtensionError
impl Display for ProtocolExtensionError
Source§impl ErrorDomain for ProtocolExtensionError
impl ErrorDomain for ProtocolExtensionError
Source§impl PartialEq for ProtocolExtensionError
impl PartialEq for ProtocolExtensionError
impl Copy for ProtocolExtensionError
impl Eq for ProtocolExtensionError
impl StructuralPartialEq for ProtocolExtensionError
Auto Trait Implementations§
impl Freeze for ProtocolExtensionError
impl RefUnwindSafe for ProtocolExtensionError
impl Send for ProtocolExtensionError
impl Sync for ProtocolExtensionError
impl Unpin for ProtocolExtensionError
impl UnwindSafe for ProtocolExtensionError
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