Enum tectonic::io::OpenResult[][src]

pub enum OpenResult<T> {
    Ok(T),
    NotAvailable,
    Err(Error),
}

Variants

Methods

impl<T> OpenResult<T>
[src]

Returns true if this result is of the NotAvailable variant.

Convert this object into a plain Result, erroring if the item was not available.

Trait Implementations

impl<T: Debug> Debug for OpenResult<T>
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl<T> Send for OpenResult<T> where
    T: Send

impl<T> !Sync for OpenResult<T>