pub trait IStreamInterleave_Impl: Sized + IStream_Impl {
    // Required method
    fn Initialize(
        &self,
        streams: *const Option<IStream>,
        interleavesizes: *const u32,
        streamcount: u32
    ) -> Result<()>;
}

Required Methods§

fn Initialize( &self, streams: *const Option<IStream>, interleavesizes: *const u32, streamcount: u32 ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§