pub trait IppOperation {
    // Required method
    fn into_ipp_request(self) -> IppRequestResponse;

    // Provided method
    fn version(&self) -> IppVersion { ... }
}
Expand description

Trait which represents a single IPP operation

Required Methods§

source

fn into_ipp_request(self) -> IppRequestResponse

Convert this operation to IPP request which is ready for sending

Provided Methods§

source

fn version(&self) -> IppVersion

Return IPP version for this operation. Default is 1.1

Implementors§