pub trait Mp4Reserve {
// Required method
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§
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,
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.