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 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 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<ProtocolExtensionError> for ProtocolExtensionError
impl PartialEq<ProtocolExtensionError> for ProtocolExtensionError
source§fn eq(&self, other: &ProtocolExtensionError) -> bool
fn eq(&self, other: &ProtocolExtensionError) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.