Enum r_extcap::ListConfigError
source · pub enum ListConfigError {
UnknownInterface(String),
}
Expand description
Error listing configs.
Variants§
UnknownInterface(String)
The interface string value given from Wireshark is not found. Wireshark
makes separate invocations to get the initial list of interfaces, and
when the user subsequently opens the config dialog. Therefore,
implementations should make sure that the interfaces used in different
ExtcapSteps
are deterministic and doesn’t change across
invocations of the program.
Trait Implementations§
source§impl Debug for ListConfigError
impl Debug for ListConfigError
source§impl Display for ListConfigError
impl Display for ListConfigError
source§impl Error for ListConfigError
impl Error for ListConfigError
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()