pub trait IPrintJobCollection_Impl: Sized + IDispatch_Impl {
    // Required methods
    fn Count(&self) -> Result<u32>;
    fn GetAt(&self, ulindex: u32) -> Result<IPrintJob>;
    fn _NewEnum(&self) -> Result<IUnknown>;
}

Required Methods§

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

fn GetAt(&self, ulindex: u32) -> Result<IPrintJob>

fn _NewEnum(&self) -> Result<IUnknown>

Object Safety§

This trait is not object safe.

Implementors§