[][src]Trait sys_util::handle_eintr::InterruptibleResult

pub trait InterruptibleResult {
    fn is_interrupted(&self) -> bool;
}

Trait for determining if a result indicates the operation was interrupted.

Required methods

fn is_interrupted(&self) -> bool

Returns true if this result indicates the operation was interrupted and should be retried, and false in all other cases.

Loading content...

Implementations on Foreign Types

impl<T> InterruptibleResult for Result<T>[src]

Loading content...

Implementors

impl<T> InterruptibleResult for sys_util::Result<T>[src]

Loading content...