pub trait IStreamConcatenate_Impl: Sized + IStream_Impl {
    // Required methods
    fn Initialize(
        &self,
        stream1: Option<&IStream>,
        stream2: Option<&IStream>
    ) -> Result<()>;
    fn Initialize2(
        &self,
        streams: *const Option<IStream>,
        streamcount: u32
    ) -> Result<()>;
    fn Append(&self, stream: Option<&IStream>) -> Result<()>;
    fn Append2(
        &self,
        streams: *const Option<IStream>,
        streamcount: u32
    ) -> Result<()>;
}

Required Methods§

fn Initialize( &self, stream1: Option<&IStream>, stream2: Option<&IStream> ) -> Result<()>

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

fn Append(&self, stream: Option<&IStream>) -> Result<()>

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

Object Safety§

This trait is not object safe.

Implementors§