pub enum CurrentPortConfigurationState {
Disabled,
BindInProgress,
UnbindInProgress,
DSP,
USP,
Reserved,
}
Variants§
Disabled
This value shall indicate the port is disabled.
BindInProgress
This value shall indicate a bind is in progress for the port.
UnbindInProgress
This value shall indicate an unbind is in progress for the port.
DSP
This value shall indicate the port is enabled as a downstream port (DSP).
USP
This value shall indicate the port is enabled as an upstream port (USP).
Reserved
This value shall indicate the port is in a reserved state.
Trait Implementations§
source§impl Clone for CurrentPortConfigurationState
impl Clone for CurrentPortConfigurationState
source§fn clone(&self) -> CurrentPortConfigurationState
fn clone(&self) -> CurrentPortConfigurationState
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 Default for CurrentPortConfigurationState
impl Default for CurrentPortConfigurationState
source§fn default() -> CurrentPortConfigurationState
fn default() -> CurrentPortConfigurationState
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for CurrentPortConfigurationState
impl<'de> Deserialize<'de> for CurrentPortConfigurationState
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more