Skip to main content

PeerSetInput

Enum PeerSetInput 

Source
pub enum PeerSetInput<'a> {
    Id(u32),
    RemoteIpv4(Ipv4Addr),
    RemoteIpv6(&'a [u8]),
    RemoteIpv6ScopeId(u32),
    RemotePort(u16),
    VpnIpv4(Ipv4Addr),
    VpnIpv6(&'a [u8]),
    LocalIpv4(Ipv4Addr),
    LocalIpv6(&'a [u8]),
    KeepaliveInterval(u32),
    KeepaliveTimeout(u32),
    TxId(u32),
}
Available on crate feature ovpn only.

Variants§

§

Id(u32)

The unique ID of the peer in the device context. To be used to identify peers during operations for a specific device. Also used to match packets received from this peer.

§

RemoteIpv4(Ipv4Addr)

The remote IPv4 address of the peer

§

RemoteIpv6(&'a [u8])

The remote IPv6 address of the peer

§

RemoteIpv6ScopeId(u32)

The scope id of the remote IPv6 address of the peer (RFC2553)

§

RemotePort(u16)

The remote port of the peer

§

VpnIpv4(Ipv4Addr)

The IPv4 address assigned to the peer by the server

§

VpnIpv6(&'a [u8])

The IPv6 address assigned to the peer by the server

§

LocalIpv4(Ipv4Addr)

The local IPv4 to be used to send packets to the peer (UDP only)

§

LocalIpv6(&'a [u8])

The local IPv6 to be used to send packets to the peer (UDP only)

§

KeepaliveInterval(u32)

The number of seconds after which a keep alive message is sent to the peer

§

KeepaliveTimeout(u32)

The number of seconds from the last activity after which the peer is assumed dead

§

TxId(u32)

The ID value used when transmitting packets to this peer. This way outgoing packets can have a different ID than incoming ones. Useful in multipeer-to-multipeer connections, where each peer will advertise the tx-id to be used on the link.

Implementations§

Source§

impl PeerSetInput<'_>

Source

pub fn new<'a>(buf: &'a [u8]) -> IterablePeerSetInput<'a>

Trait Implementations§

Source§

impl<'a> Clone for PeerSetInput<'a>

Source§

fn clone(&self) -> PeerSetInput<'a>

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more

Auto Trait Implementations§

§

impl<'a> Freeze for PeerSetInput<'a>

§

impl<'a> RefUnwindSafe for PeerSetInput<'a>

§

impl<'a> Send for PeerSetInput<'a>

§

impl<'a> Sync for PeerSetInput<'a>

§

impl<'a> Unpin for PeerSetInput<'a>

§

impl<'a> UnsafeUnpin for PeerSetInput<'a>

§

impl<'a> UnwindSafe for PeerSetInput<'a>

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.