windows::Win32::Media::Speech

Trait ISpProperties_Impl

pub trait ISpProperties_Impl: IUnknownImpl {
    // Required methods
    fn SetPropertyNum(&self, pname: &PCWSTR, lvalue: i32) -> Result<()>;
    fn GetPropertyNum(&self, pname: &PCWSTR, plvalue: *mut i32) -> Result<()>;
    fn SetPropertyString(&self, pname: &PCWSTR, pvalue: &PCWSTR) -> Result<()>;
    fn GetPropertyString(&self, pname: &PCWSTR) -> Result<PWSTR>;
}

Required Methods§

fn SetPropertyNum(&self, pname: &PCWSTR, lvalue: i32) -> Result<()>

fn GetPropertyNum(&self, pname: &PCWSTR, plvalue: *mut i32) -> Result<()>

fn SetPropertyString(&self, pname: &PCWSTR, pvalue: &PCWSTR) -> Result<()>

fn GetPropertyString(&self, pname: &PCWSTR) -> Result<PWSTR>

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§