Struct wireguard_uapi::linux::set::Device[][src]

pub struct Device<'a> {
    pub interface: DeviceInterface<'a>,
    pub flags: Vec<WgDeviceF>,
    pub private_key: Option<&'a [u8; 32]>,
    pub listen_port: Option<u16>,
    pub fwmark: Option<u32>,
    pub peers: Vec<Peer<'a>>,
}

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

impl<'a> Debug for Device<'a>[src]

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]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.