pub enum PeerDelInput {
Id(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.
Implementations§
Source§impl PeerDelInput
impl PeerDelInput
pub fn new<'a>(buf: &'a [u8]) -> IterablePeerDelInput<'a> ⓘ
Trait Implementations§
Source§impl Clone for PeerDelInput
impl Clone for PeerDelInput
Source§fn clone(&self) -> PeerDelInput
fn clone(&self) -> PeerDelInput
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for PeerDelInput
impl RefUnwindSafe for PeerDelInput
impl Send for PeerDelInput
impl Sync for PeerDelInput
impl Unpin for PeerDelInput
impl UnsafeUnpin for PeerDelInput
impl UnwindSafe for PeerDelInput
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