windows::Win32::Graphics::Printing

Trait IPrintSchemaTicket_Impl

pub trait IPrintSchemaTicket_Impl: IPrintSchemaElement_Impl {
    // Required methods
    fn GetFeatureByKeyName(
        &self,
        bstrkeyname: &BSTR,
    ) -> Result<IPrintSchemaFeature>;
    fn GetFeature(
        &self,
        bstrname: &BSTR,
        bstrnamespaceuri: &BSTR,
    ) -> Result<IPrintSchemaFeature>;
    fn ValidateAsync(&self) -> Result<IPrintSchemaAsyncOperation>;
    fn CommitAsync(
        &self,
        pprintticketcommit: Ref<'_, IPrintSchemaTicket>,
    ) -> Result<IPrintSchemaAsyncOperation>;
    fn NotifyXmlChanged(&self) -> Result<()>;
    fn GetCapabilities(&self) -> Result<IPrintSchemaCapabilities>;
    fn JobCopiesAllDocuments(&self) -> Result<u32>;
    fn SetJobCopiesAllDocuments(
        &self,
        uljobcopiesalldocuments: u32,
    ) -> Result<()>;
}

Required Methods§

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

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

fn ValidateAsync(&self) -> Result<IPrintSchemaAsyncOperation>

fn CommitAsync( &self, pprintticketcommit: Ref<'_, IPrintSchemaTicket>, ) -> Result<IPrintSchemaAsyncOperation>

fn NotifyXmlChanged(&self) -> Result<()>

fn GetCapabilities(&self) -> Result<IPrintSchemaCapabilities>

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

fn SetJobCopiesAllDocuments(&self, uljobcopiesalldocuments: u32) -> Result<()>

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§