[][src]Enum ipp_proto::request::PayloadKind

pub enum PayloadKind {
    JobSource(IppJobSource),
    ReceivedData(NamedTempFile),
}

Payload type inside the IppRequestResponse

Variants

JobSource(IppJobSource)

Job source for client side

ReceivedData(NamedTempFile)

Received data for server side

Methods

impl PayloadKind[src]

pub fn as_jobsource(&self) -> Option<&IppJobSource>[src]

Optionally returns references to the inner fields if this is a PayloadKind::JobSource, otherwise None

pub fn as_receiveddata(&self) -> Option<&NamedTempFile>[src]

Optionally returns references to the inner fields if this is a PayloadKind::ReceivedData, otherwise None

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>,