pub struct SslBundle {
pub certificate_chain: String,
pub private_key: String,
pub public_key: String,
}
Expand description
The SSL certificate bundle for a domain
Fields§
§certificate_chain: String
The complete certificate chain.
private_key: String
The private key.
public_key: String
The public key.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for SslBundle
impl<'de> Deserialize<'de> for SslBundle
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 SslBundle
impl RefUnwindSafe for SslBundle
impl Send for SslBundle
impl Sync for SslBundle
impl Unpin for SslBundle
impl UnwindSafe for SslBundle
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