pub trait IPrintSchemaCapabilities_Impl: Sized + IPrintSchemaElement_Impl {
    // Required methods
    fn GetFeatureByKeyName(
        &self,
        bstrkeyname: &BSTR,
    ) -> Result<IPrintSchemaFeature>;
    fn GetFeature(
        &self,
        bstrname: &BSTR,
        bstrnamespaceuri: &BSTR,
    ) -> Result<IPrintSchemaFeature>;
    fn PageImageableSize(&self) -> Result<IPrintSchemaPageImageableSize>;
    fn JobCopiesAllDocumentsMinValue(&self) -> Result<u32>;
    fn JobCopiesAllDocumentsMaxValue(&self) -> Result<u32>;
    fn GetSelectedOptionInPrintTicket(
        &self,
        pfeature: Option<&IPrintSchemaFeature>,
    ) -> Result<IPrintSchemaOption>;
    fn GetOptions(
        &self,
        pfeature: Option<&IPrintSchemaFeature>,
    ) -> Result<IPrintSchemaOptionCollection>;
}

Required Methods§

fn GetFeatureByKeyName(&self, bstrkeyname: &BSTR) -> Result<IPrintSchemaFeature>

fn GetFeature( &self, bstrname: &BSTR, bstrnamespaceuri: &BSTR, ) -> Result<IPrintSchemaFeature>

fn PageImageableSize(&self) -> Result<IPrintSchemaPageImageableSize>

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

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

fn GetSelectedOptionInPrintTicket( &self, pfeature: Option<&IPrintSchemaFeature>, ) -> Result<IPrintSchemaOption>

fn GetOptions( &self, pfeature: Option<&IPrintSchemaFeature>, ) -> Result<IPrintSchemaOptionCollection>

Object Safety§

This trait is not object safe.

Implementors§