pub struct IppOperationBuilder;
Expand description
Builder to create IPP operations
Implementations§
Source§impl IppOperationBuilder
impl IppOperationBuilder
Sourcepub fn print_job<T>(source: T) -> PrintJobBuilderwhere
IppJobSource: From<T>,
pub fn print_job<T>(source: T) -> PrintJobBuilderwhere
IppJobSource: From<T>,
Create PrintJob operation
source
-IppJobSource
Sourcepub fn get_printer_attributes() -> GetPrinterAttributesBuilder
pub fn get_printer_attributes() -> GetPrinterAttributesBuilder
Create GetPrinterAttributes operation
Sourcepub fn create_job() -> CreateJobBuilder
pub fn create_job() -> CreateJobBuilder
Create CreateJob operation
Sourcepub fn send_document<T>(job_id: i32, source: T) -> SendDocumentBuilderwhere
IppJobSource: From<T>,
pub fn send_document<T>(job_id: i32, source: T) -> SendDocumentBuilderwhere
IppJobSource: From<T>,
Create SendDocument operation
job_id
- job id returned by Create-Job operationsource
-IppJobSource
Auto Trait Implementations§
impl Freeze for IppOperationBuilder
impl RefUnwindSafe for IppOperationBuilder
impl Send for IppOperationBuilder
impl Sync for IppOperationBuilder
impl Unpin for IppOperationBuilder
impl UnwindSafe for IppOperationBuilder
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more