pub trait IPosPrinterJob_Impl: Sized {
    // Required methods
    fn Print(&self, data: &HSTRING) -> Result<()>;
    fn PrintLine(&self, data: &HSTRING) -> Result<()>;
    fn PrintNewline(&self) -> Result<()>;
    fn ExecuteAsync(&self) -> Result<IAsyncOperation<bool>>;
}

Required Methods§

fn Print(&self, data: &HSTRING) -> Result<()>

fn PrintLine(&self, data: &HSTRING) -> Result<()>

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

fn ExecuteAsync(&self) -> Result<IAsyncOperation<bool>>

Object Safety§

This trait is not object safe.

Implementors§