pub trait Mp4Reserve {
    fn reserve<'life0, 'async_trait, T>(
        &'life0 mut self
    ) -> Pin<Box<dyn Future<Output = Result<usize, MP4Error>> + Send + 'async_trait>>
    where
        T: 'async_trait + Mp4Reservable,
        Self: 'async_trait,
        'life0: 'async_trait
; }

Required Methods§

Implementors§