pub enum VPNProtocol {
OpenVPN,
}
Variants§
OpenVPN
Trait Implementations§
Source§impl Clone for VPNProtocol
impl Clone for VPNProtocol
Source§fn clone(&self) -> VPNProtocol
fn clone(&self) -> VPNProtocol
Returns a copy 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 VPNProtocol
impl Debug for VPNProtocol
Source§impl Default for VPNProtocol
impl Default for VPNProtocol
Source§impl<'de> Deserialize<'de> for VPNProtocol
impl<'de> Deserialize<'de> for VPNProtocol
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for VPNProtocol
impl RefUnwindSafe for VPNProtocol
impl Send for VPNProtocol
impl Sync for VPNProtocol
impl Unpin for VPNProtocol
impl UnwindSafe for VPNProtocol
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