pub struct VPN {
pub custom_data: Option<CustomData>,
pub group: Option<String<50usize>>,
pub key: String<255usize>,
pub password: String<64usize>,
pub server: String<2000usize>,
pub type: VPNEnum,
pub user: String<50usize>,
}Expand description
VPN Configuration settings
Fields§
§custom_data: Option<CustomData>§group: Option<String<50usize>>VPN group.
key: String<255usize>VPN shared secret.
password: String<64usize>(2.1) VPN Password.
server: String<2000usize>VPN Server Address
type: VPNEnum§user: String<50usize>VPN User
Trait Implementations§
impl Eq for VPN
impl StructuralPartialEq for VPN
Auto Trait Implementations§
impl Freeze for VPN
impl RefUnwindSafe for VPN
impl Send for VPN
impl Sync for VPN
impl Unpin for VPN
impl UnsafeUnpin for VPN
impl UnwindSafe for VPN
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