pub enum Issuance {
Live,
DryRun,
Staging,
}Expand description
How far to go.
Variants§
Live
Ask the real directory for a real certificate.
DryRun
--dry-run: exercise the whole path against the staging
directory and write nothing. The way to find out that port 80 is
firewalled without spending a rate-limit slot on finding out.
Staging
--test-cert: a real file, from the staging directory, that no
client will trust. For proving the projection and the restart.
Trait Implementations§
impl Copy for Issuance
impl Eq for Issuance
impl StructuralPartialEq for Issuance
Auto Trait Implementations§
impl Freeze for Issuance
impl RefUnwindSafe for Issuance
impl Send for Issuance
impl Sync for Issuance
impl Unpin for Issuance
impl UnsafeUnpin for Issuance
impl UnwindSafe for Issuance
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