#[non_exhaustive]pub struct Config {
pub random_seed: u64,
pub hardware_addr: HardwareAddress,
}
Expand description
Configuration structure used for creating a network interface.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.random_seed: u64
Random seed.
It is strongly recommended that the random seed is different on each boot, to avoid problems with TCP port/sequence collisions.
The seed doesn’t have to be cryptographically secure.
hardware_addr: HardwareAddress
Set the Hardware address the interface will use.
§Panics
Creating the interface panics if the address is not unicast.
Implementations§
Auto Trait Implementations§
impl Freeze for Config
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