windows::Win32::Graphics::Printing

Trait IPrintSchemaFeature_Impl

pub trait IPrintSchemaFeature_Impl: IPrintSchemaDisplayableElement_Impl {
    // Required methods
    fn SelectedOption(&self) -> Result<IPrintSchemaOption>;
    fn SetSelectedOption(
        &self,
        poption: Ref<'_, IPrintSchemaOption>,
    ) -> Result<()>;
    fn SelectionType(&self) -> Result<PrintSchemaSelectionType>;
    fn GetOption(
        &self,
        bstrname: &BSTR,
        bstrnamespaceuri: &BSTR,
    ) -> Result<IPrintSchemaOption>;
    fn DisplayUI(&self) -> Result<BOOL>;
}

Required Methods§

fn SelectedOption(&self) -> Result<IPrintSchemaOption>

fn SetSelectedOption(&self, poption: Ref<'_, IPrintSchemaOption>) -> Result<()>

fn SelectionType(&self) -> Result<PrintSchemaSelectionType>

fn GetOption( &self, bstrname: &BSTR, bstrnamespaceuri: &BSTR, ) -> Result<IPrintSchemaOption>

fn DisplayUI(&self) -> Result<BOOL>

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§