windows::Win32::Graphics::Printing

Trait IPrintJob_Impl

pub trait IPrintJob_Impl: IUnknownImpl {
    // Required methods
    fn Name(&self) -> Result<BSTR>;
    fn Id(&self) -> Result<u32>;
    fn PrintedPages(&self) -> Result<u32>;
    fn TotalPages(&self) -> Result<u32>;
    fn Status(&self) -> Result<PrintJobStatus>;
    fn SubmissionTime(&self) -> Result<f64>;
    fn RequestCancel(&self) -> Result<()>;
}

Required Methods§

fn Name(&self) -> Result<BSTR>

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

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

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

fn Status(&self) -> Result<PrintJobStatus>

fn SubmissionTime(&self) -> Result<f64>

fn RequestCancel(&self) -> 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§