[][src]Enum tectonic_io_base::OpenResult

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

A convenience type for file-open operations when "not found" needs to be handled specially.

Variants

Ok(T)

The open operation succeeded.

NotAvailable

The file was not available.

Err(Error)

Something else went wrong.

Implementations

impl<T> OpenResult<T>[src]

pub fn unwrap(self) -> T[src]

Obtain the underlying file object, or panic.

pub fn is_not_available(&self) -> bool[src]

Returns true if this result is of the NotAvailable variant.

pub fn must_exist(self) -> Result<T>[src]

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

Trait Implementations

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

Auto Trait Implementations

impl<T> !RefUnwindSafe for OpenResult<T>[src]

impl<T> Send for OpenResult<T> where
    T: Send
[src]

impl<T> Sync for OpenResult<T> where
    T: Sync
[src]

impl<T> Unpin for OpenResult<T> where
    T: Unpin
[src]

impl<T> !UnwindSafe for OpenResult<T>[src]

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> From<T> for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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.