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)>
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()
Auto Trait Implementations§
impl Freeze for ListConfigError
impl RefUnwindSafe for ListConfigError
impl Send for ListConfigError
impl Sync for ListConfigError
impl Unpin for ListConfigError
impl UnwindSafe for ListConfigError
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