Enum r_extcap::PrintDltError
source · pub enum PrintDltError {
UnknownInterface(String),
}
Expand description
Error printing DLTs to Wireshark.
Variants§
UnknownInterface(String)
The interface string value given from Wireshark is not found. Wireshark
invokes the extcap program multiple times, first to get the list of
interfaces, then multiple times to get the DLTs. Therefore,
implementations should make sure that the interfaces returned from
ExtcapApplication::interfaces
are deterministic and doesn’t change
across invocations of the program.
Trait Implementations§
source§impl Debug for PrintDltError
impl Debug for PrintDltError
source§impl Display for PrintDltError
impl Display for PrintDltError
source§impl Error for PrintDltError
impl Error for PrintDltError
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()
source§impl From<PrintDltError> for ExtcapError
impl From<PrintDltError> for ExtcapError
source§fn from(source: PrintDltError) -> Self
fn from(source: PrintDltError) -> Self
Converts to this type from the input type.