pub struct Configuration { /* private fields */ }
Expand description
Configuration builder for a TUN interface.
Implementations§
Source§impl Configuration
impl Configuration
Sourcepub fn platform<F>(&mut self, f: F) -> &mut Selfwhere
F: FnOnce(&mut Configuration),
pub fn platform<F>(&mut self, f: F) -> &mut Selfwhere
F: FnOnce(&mut Configuration),
Access the platform dependant configuration.
Sourcepub fn address<A: IntoAddress>(&mut self, value: A) -> &mut Self
pub fn address<A: IntoAddress>(&mut self, value: A) -> &mut Self
Set the address.
Sourcepub fn destination<A: IntoAddress>(&mut self, value: A) -> &mut Self
pub fn destination<A: IntoAddress>(&mut self, value: A) -> &mut Self
Set the destination address.
Sourcepub fn broadcast<A: IntoAddress>(&mut self, value: A) -> &mut Self
pub fn broadcast<A: IntoAddress>(&mut self, value: A) -> &mut Self
Set the broadcast address.
Sourcepub fn netmask<A: IntoAddress>(&mut self, value: A) -> &mut Self
pub fn netmask<A: IntoAddress>(&mut self, value: A) -> &mut Self
Set the netmask.
Trait Implementations§
Source§impl Clone for Configuration
impl Clone for Configuration
Source§fn clone(&self) -> Configuration
fn clone(&self) -> Configuration
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for Configuration
impl Debug for Configuration
Source§impl Default for Configuration
impl Default for Configuration
Source§fn default() -> Configuration
fn default() -> Configuration
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for Configuration
impl RefUnwindSafe for Configuration
impl Send for Configuration
impl Sync for Configuration
impl Unpin for Configuration
impl UnwindSafe for Configuration
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