pub struct InstantAcmeClient {
account: Account,
}Fields§
§account: AccountTrait Implementations§
Source§impl AcmeClient for InstantAcmeClient
impl AcmeClient for InstantAcmeClient
fn new_order<'life0, 'life1, 'async_trait>(
&'life0 self,
domains: &'life1 [String],
) -> Pin<Box<dyn Future<Output = Result<Box<dyn AcmeOrder>, AcmeError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
Source§fn renewal_window<'life0, 'life1, 'async_trait>(
&'life0 self,
leaf_der: &'life1 [u8],
) -> Pin<Box<dyn Future<Output = Result<Option<(i64, i64)>, AcmeError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
fn renewal_window<'life0, 'life1, 'async_trait>(
&'life0 self,
leaf_der: &'life1 [u8],
) -> Pin<Box<dyn Future<Output = Result<Option<(i64, i64)>, AcmeError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
RFC 9773 renewal-info window for the certificate, when the CA offers it.
Auto Trait Implementations§
impl !RefUnwindSafe for InstantAcmeClient
impl !UnwindSafe for InstantAcmeClient
impl Freeze for InstantAcmeClient
impl Send for InstantAcmeClient
impl Sync for InstantAcmeClient
impl Unpin for InstantAcmeClient
impl UnsafeUnpin for InstantAcmeClient
Blanket Implementations§
§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more