[][src]Struct ucare::conversion::StatusResult

pub struct StatusResult {
    pub status: String,
    pub error: Option<String>,
    pub result: JobInfo,
}

Conversion job status request result

Fields

status: String

Status holds conversion job status, can be one of the following: pending — a source file is being prepared for conversion. processing — conversion is in progress. finished — the conversion is finished. failed — we failed to convert the source, see error for details. canceled — the conversion was canceled.

error: Option<String>

Conversion error if we were unable to handle your file

result: JobInfo

Result repeats the contents of your processing output

Trait Implementations

impl Debug for StatusResult[src]

impl<'de> Deserialize<'de> for StatusResult[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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.