pub trait Pause<T> {
    fn pause<'life0, 'life1, 'async_trait>(
        &'life0 self,
        other: &'life1 T
    ) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        'life1: 'async_trait,
        Self: 'async_trait
; }
Expand description

Pause a torrent

Required Methods

Implementations on Foreign Types

Implementors