pub struct Config {
pub write_buffer_size: usize,
pub read_buffer_size: usize,
}
Expand description
The WinPcap’s specific configuration.
Fields§
§write_buffer_size: usize
The size of buffer to use when writing packets. Defaults to 4096.
read_buffer_size: usize
The size of buffer to use when reading packets. Defaults to 4096.
Trait Implementations§
source§impl PartialEq<Config> for Config
impl PartialEq<Config> for Config
impl Copy for Config
impl Eq for Config
impl StructuralEq for Config
impl StructuralPartialEq for Config
Auto Trait Implementations§
impl RefUnwindSafe for Config
impl Send for Config
impl Sync for Config
impl Unpin for Config
impl UnwindSafe for Config
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