pub trait Mp4VersionedReadable<F: FlagTrait>: Sized {
    fn versioned_read<'life0, 'async_trait, R>(
        version: u8,
        flags: F,
        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
; }

Required Methods§

Implementors§