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§
Source§impl<'de> Deserialize<'de> for SslConfig
impl<'de> Deserialize<'de> for SslConfig
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
impl Eq for SslConfig
impl StructuralPartialEq for SslConfig
Auto Trait Implementations§
impl Freeze for SslConfig
impl RefUnwindSafe for SslConfig
impl Send for SslConfig
impl Sync for SslConfig
impl Unpin for SslConfig
impl UnwindSafe for SslConfig
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