pub trait PartialBoxRead: PartialBox + Sized {
// Required method
fn read_data<'life0, 'async_trait, R>(
parent_data: Self::ParentData,
reader: &'life0 mut R,
) -> Pin<Box<dyn Future<Output = Result<Self, MP4Error>> + Send + 'async_trait>>
where R: 'async_trait + ReadMp4,
Self: 'async_trait,
'life0: 'async_trait;
// Provided method
fn read_child<'life0, 'life1, 'async_trait, R>(
&'life0 mut self,
_header: BoxHeader,
_reader: &'life1 mut R,
) -> Pin<Box<dyn Future<Output = Result<(), MP4Error>> + Send + 'async_trait>>
where R: 'async_trait + ReadMp4,
Self: Send + 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait { ... }
}
Required Methods§
fn read_data<'life0, 'async_trait, R>(
parent_data: Self::ParentData,
reader: &'life0 mut R,
) -> Pin<Box<dyn Future<Output = Result<Self, MP4Error>> + Send + 'async_trait>>where
R: 'async_trait + ReadMp4,
Self: 'async_trait,
'life0: 'async_trait,
Provided Methods§
fn read_child<'life0, 'life1, 'async_trait, R>( &'life0 mut self, _header: BoxHeader, _reader: &'life1 mut R, ) -> Pin<Box<dyn Future<Output = Result<(), MP4Error>> + Send + '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.