[][src]Trait paxakos::append::RetryPolicy

pub trait RetryPolicy: Debug + Send {
#[must_use]    fn eval<'life0, 'async_trait>(
        &'life0 mut self,
        err: AppendError
    ) -> Pin<Box<dyn Future<Output = Result<(), BoxError>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
; }

Required methods

#[must_use]fn eval<'life0, 'async_trait>(
    &'life0 mut self,
    err: AppendError
) -> Pin<Box<dyn Future<Output = Result<(), BoxError>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 

Loading content...

Implementors

impl RetryPolicy for DoNotRetry[src]

impl RetryPolicy for RetryIndefinitely[src]

Loading content...