[][src]Struct ipp_proto::builder::IppOperationBuilder

pub struct IppOperationBuilder;

Builder to create IPP operations

Methods

impl IppOperationBuilder[src]

pub fn print_job<T>(source: T) -> PrintJobBuilder where
    IppJobSource: From<T>, 
[src]

Create PrintJob operation

  • source - IppJobSource

pub fn get_printer_attributes() -> GetPrinterAttributesBuilder[src]

Create GetPrinterAttributes operation

pub fn create_job() -> CreateJobBuilder[src]

Create CreateJob operation

pub fn send_document<T>(job_id: i32, source: T) -> SendDocumentBuilder where
    IppJobSource: From<T>, 
[src]

Create SendDocument operation

  • job_id - job id returned by Create-Job operation
  • source - IppJobSource

Auto Trait Implementations

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Erased for T

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,