pub trait ICommonPosPrintStationCapabilities_Impl: Sized {
Show 13 methods
// Required methods
fn IsPrinterPresent(&self) -> Result<bool>;
fn IsDualColorSupported(&self) -> Result<bool>;
fn ColorCartridgeCapabilities(&self) -> Result<PosPrinterColorCapabilities>;
fn CartridgeSensors(&self) -> Result<PosPrinterCartridgeSensors>;
fn IsBoldSupported(&self) -> Result<bool>;
fn IsItalicSupported(&self) -> Result<bool>;
fn IsUnderlineSupported(&self) -> Result<bool>;
fn IsDoubleHighPrintSupported(&self) -> Result<bool>;
fn IsDoubleWidePrintSupported(&self) -> Result<bool>;
fn IsDoubleHighDoubleWidePrintSupported(&self) -> Result<bool>;
fn IsPaperEmptySensorSupported(&self) -> Result<bool>;
fn IsPaperNearEndSensorSupported(&self) -> Result<bool>;
fn SupportedCharactersPerLine(&self) -> Result<IVectorView<u32>>;
}
Required Methods§
fn IsPrinterPresent(&self) -> Result<bool>
fn IsDualColorSupported(&self) -> Result<bool>
fn ColorCartridgeCapabilities(&self) -> Result<PosPrinterColorCapabilities>
fn CartridgeSensors(&self) -> Result<PosPrinterCartridgeSensors>
fn IsBoldSupported(&self) -> Result<bool>
fn IsItalicSupported(&self) -> Result<bool>
fn IsUnderlineSupported(&self) -> Result<bool>
fn IsDoubleHighPrintSupported(&self) -> Result<bool>
fn IsDoubleWidePrintSupported(&self) -> Result<bool>
fn IsDoubleHighDoubleWidePrintSupported(&self) -> Result<bool>
fn IsPaperEmptySensorSupported(&self) -> Result<bool>
fn IsPaperNearEndSensorSupported(&self) -> Result<bool>
fn SupportedCharactersPerLine(&self) -> Result<IVectorView<u32>>
Object Safety§
This trait is not object safe.