pub struct CertOrder<P: Persist> { /* private fields */ }
Expand description
Order for an issued certificate that is ready to download.
Implementations§
Source§impl<P: Persist> CertOrder<P>
impl<P: Persist> CertOrder<P>
Sourcepub fn download_and_save_cert(self) -> Result<Certificate>
pub fn download_and_save_cert(self) -> Result<Certificate>
Request download of the issued certificate.
When downloaded, the certificate and key will be saved in the
persistence. They can later be retreived using Account::certificate
.
Auto Trait Implementations§
impl<P> Freeze for CertOrder<P>
impl<P> RefUnwindSafe for CertOrder<P>where
P: RefUnwindSafe,
impl<P> Send for CertOrder<P>where
P: Sync,
impl<P> Sync for CertOrder<P>where
P: Sync,
impl<P> Unpin for CertOrder<P>
impl<P> UnwindSafe for CertOrder<P>where
P: RefUnwindSafe,
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