pub trait IMFPresentationDescriptor_Impl: Sized + IMFAttributes_Impl {
    // Required methods
    fn GetStreamDescriptorCount(&self) -> Result<u32>;
    fn GetStreamDescriptorByIndex(
        &self,
        dwindex: u32,
        pfselected: *mut BOOL,
        ppdescriptor: *mut Option<IMFStreamDescriptor>
    ) -> Result<()>;
    fn SelectStream(&self, dwdescriptorindex: u32) -> Result<()>;
    fn DeselectStream(&self, dwdescriptorindex: u32) -> Result<()>;
    fn Clone(&self) -> Result<IMFPresentationDescriptor>;
}

Required Methods§

fn GetStreamDescriptorCount(&self) -> Result<u32>

fn GetStreamDescriptorByIndex( &self, dwindex: u32, pfselected: *mut BOOL, ppdescriptor: *mut Option<IMFStreamDescriptor> ) -> Result<()>

fn SelectStream(&self, dwdescriptorindex: u32) -> Result<()>

fn DeselectStream(&self, dwdescriptorindex: u32) -> Result<()>

fn Clone(&self) -> Result<IMFPresentationDescriptor>

Object Safety§

This trait is not object safe.

Implementors§