pub struct OriginCertificate {
pub certificate: String,
pub private_key: String,
pub expires_on: String,
}Expand description
Origin CA certificate and private key
Fields§
§certificate: StringPEM-encoded certificate
private_key: StringPEM-encoded private key
expires_on: StringCertificate expiration date
Trait Implementations§
Source§impl Clone for OriginCertificate
impl Clone for OriginCertificate
Source§fn clone(&self) -> OriginCertificate
fn clone(&self) -> OriginCertificate
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 moreAuto Trait Implementations§
impl Freeze for OriginCertificate
impl RefUnwindSafe for OriginCertificate
impl Send for OriginCertificate
impl Sync for OriginCertificate
impl Unpin for OriginCertificate
impl UnwindSafe for OriginCertificate
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