Trait IPrintSchemaCapabilities_Impl
pub trait IPrintSchemaCapabilities_Impl: 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: Ref<'_, IPrintSchemaFeature>,
) -> Result<IPrintSchemaOption>;
fn GetOptions(
&self,
pfeature: Ref<'_, 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: Ref<'_, IPrintSchemaFeature>, ) -> Result<IPrintSchemaOption>
fn GetOptions( &self, pfeature: Ref<'_, IPrintSchemaFeature>, ) -> Result<IPrintSchemaOptionCollection>
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.