Struct netplan_types::SslConfig
source · [−]pub struct SslConfig {
pub ca_cert: Option<String>,
pub certificate: Option<String>,
pub private_key: Option<String>,
}Expand description
Valid for global openvswitch settings. Options for configuring SSL server endpoint for the switch.
Fields
ca_cert: Option<String>Path to a file containing the CA certificate to be used.
certificate: Option<String>Path to a file containing the server certificate.
private_key: Option<String>Path to a file containing the private key for the server.
Trait Implementations
sourceimpl<'de> Deserialize<'de> for SslConfig
impl<'de> Deserialize<'de> for SslConfig
sourcefn 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
impl Eq for SslConfig
impl StructuralEq for SslConfig
impl StructuralPartialEq for SslConfig
Auto Trait Implementations
impl RefUnwindSafe for SslConfig
impl Send for SslConfig
impl Sync for SslConfig
impl Unpin for SslConfig
impl UnwindSafe for SslConfig
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into)Uses borrowed data to replace owned data, usually by cloning. Read more