#[non_exhaustive]pub struct LibreswanConfig {Show 31 fields
pub nm_auto_defaults: bool,
pub right: String,
pub rightid: Option<String>,
pub rightrsasigkey: Option<String>,
pub rightcert: Option<String>,
pub left: Option<String>,
pub leftid: Option<String>,
pub leftrsasigkey: Option<String>,
pub leftcert: Option<String>,
pub ikev2: Option<String>,
pub psk: Option<String>,
pub ikelifetime: Option<String>,
pub salifetime: Option<String>,
pub ike: Option<String>,
pub esp: Option<String>,
pub dpddelay: Option<u64>,
pub dpdtimeout: Option<u64>,
pub dpdaction: Option<String>,
pub ipsec_interface: Option<String>,
pub authby: Option<String>,
pub rightsubnet: Option<String>,
pub leftsubnet: Option<String>,
pub leftmodecfgclient: Option<bool>,
pub kind: Option<LibreswanConnectionType>,
pub hostaddrfamily: Option<LibreswanAddressFamily>,
pub clientaddrfamily: Option<LibreswanAddressFamily>,
pub require_id_on_certificate: Option<bool>,
pub leftsendcert: Option<String>,
pub rightca: Option<String>,
pub leftprotoport: Option<String>,
pub rightprotoport: Option<String>,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.nm_auto_defaults: boolWhether use NetworkManager default value. Default is true. Setting false will instruct nmstate to follow libreswan default value sets.
right: String§rightid: Option<String>§rightrsasigkey: Option<String>§rightcert: Option<String>§left: Option<String>§leftid: Option<String>§leftrsasigkey: Option<String>§leftcert: Option<String>§ikev2: Option<String>§psk: Option<String>PSK authentication, if not defined, will use X.509 PKI authentication
ikelifetime: Option<String>§salifetime: Option<String>§ike: Option<String>§esp: Option<String>§dpddelay: Option<u64>§dpdtimeout: Option<u64>§dpdaction: Option<String>§ipsec_interface: Option<String>§authby: Option<String>§rightsubnet: Option<String>§leftsubnet: Option<String>§leftmodecfgclient: Option<bool>§kind: Option<LibreswanConnectionType>§hostaddrfamily: Option<LibreswanAddressFamily>§clientaddrfamily: Option<LibreswanAddressFamily>§require_id_on_certificate: Option<bool>§leftsendcert: Option<String>§rightca: Option<String>§leftprotoport: Option<String>§rightprotoport: Option<String>Implementations§
Trait Implementations§
Source§impl Clone for LibreswanConfig
impl Clone for LibreswanConfig
Source§fn clone(&self) -> LibreswanConfig
fn clone(&self) -> LibreswanConfig
Returns a duplicate 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 LibreswanConfig
impl Debug for LibreswanConfig
Source§impl Default for LibreswanConfig
impl Default for LibreswanConfig
Source§fn default() -> LibreswanConfig
fn default() -> LibreswanConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for LibreswanConfig
impl<'de> Deserialize<'de> for LibreswanConfig
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
Source§impl PartialEq for LibreswanConfig
impl PartialEq for LibreswanConfig
Source§impl Serialize for LibreswanConfig
impl Serialize for LibreswanConfig
impl Eq for LibreswanConfig
impl StructuralPartialEq for LibreswanConfig
Auto Trait Implementations§
impl Freeze for LibreswanConfig
impl RefUnwindSafe for LibreswanConfig
impl Send for LibreswanConfig
impl Sync for LibreswanConfig
impl Unpin for LibreswanConfig
impl UnwindSafe for LibreswanConfig
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.