pub trait IAudioSystemEffectsCustomFormats_Impl: Sized {
    // Required methods
    fn GetFormatCount(&self) -> Result<u32>;
    fn GetFormat(&self, nformat: u32) -> Result<IAudioMediaType>;
    fn GetFormatRepresentation(&self, nformat: u32) -> Result<PWSTR>;
}

Required Methods§

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

fn GetFormat(&self, nformat: u32) -> Result<IAudioMediaType>

fn GetFormatRepresentation(&self, nformat: u32) -> Result<PWSTR>

Object Safety§

This trait is not object safe.

Implementors§