Struct wireguard_uapi::linux::set::Device [−][src]
Fields
interface: DeviceInterface<'a>
flags: Vec<WgDeviceF>
0 or WGDEVICE_F_REPLACE_PEERS if all current peers should be removed prior to adding the
private_key: Option<&'a [u8; 32]>
all zeros to remove
listen_port: Option<u16>
0 to choose randomly
fwmark: Option<u32>
0 to disable
peers: Vec<Peer<'a>>
Implementations
impl<'a> Device<'a>
[src]
pub fn from_ifname<T: Into<Cow<'a, str>>>(ifname: T) -> Self
[src]
pub fn from_ifindex(ifindex: u32) -> Self
[src]
pub fn flags(self, flags: Vec<WgDeviceF>) -> Self
[src]
pub fn private_key(self, private_key: &'a [u8; 32]) -> Self
[src]
pub fn listen_port(self, listen_port: u16) -> Self
[src]
pub fn fwmark(self, fwmark: u32) -> Self
[src]
pub fn peers(self, peers: Vec<Peer<'a>>) -> Self
[src]
Trait Implementations
Auto Trait Implementations
impl<'a> RefUnwindSafe for Device<'a>
impl<'a> Send for Device<'a>
impl<'a> Sync for Device<'a>
impl<'a> Unpin for Device<'a>
impl<'a> UnwindSafe for Device<'a>
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,