pub struct ConfigStep<'a> {
pub interface: &'a str,
}
Expand description
List the configurable UI elements for this interface. This is presented to the user when they click on the gear icon next to the capture interface name, or if they try to start a capture that is lacking a required config value.
Fields§
§interface: &'a str
The interface that the configurations should be associated with.
Implementations§
Source§impl<'a> ConfigStep<'a>
impl<'a> ConfigStep<'a>
Sourcepub fn list_configs(&self, configs: &[&dyn ConfigTrait])
pub fn list_configs(&self, configs: &[&dyn ConfigTrait])
List the configs
given, printing them out to stdout for consumption by
Wireshark. This list can vary by interface
.
Auto Trait Implementations§
impl<'a> Freeze for ConfigStep<'a>
impl<'a> RefUnwindSafe for ConfigStep<'a>
impl<'a> Send for ConfigStep<'a>
impl<'a> Sync for ConfigStep<'a>
impl<'a> Unpin for ConfigStep<'a>
impl<'a> UnwindSafe for ConfigStep<'a>
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