pub enum PfCmdFile<'p> {
Add {
file_path: &'p Path,
},
Delete {
file_path: &'p Path,
},
Test {
file_path: &'p Path,
},
Flush,
}
Variants§
Add
Adds a host/hostname to table
Delete
Removes a host/hostname from table
Test
Checks if host/hostname presents in table
Flush
Flushes the
Auto Trait Implementations§
impl<'p> Freeze for PfCmdFile<'p>
impl<'p> RefUnwindSafe for PfCmdFile<'p>
impl<'p> Send for PfCmdFile<'p>
impl<'p> Sync for PfCmdFile<'p>
impl<'p> Unpin for PfCmdFile<'p>
impl<'p> UnwindSafe for PfCmdFile<'p>
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