Type Alias base::errno::Result

source ·
pub type Result<T> = Result<T, Error>;

Aliased Type§

enum Result<T> {
    Ok(T),
    Err(Error),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(Error)

Contains the error value

Trait Implementations§

source§

impl<T> InterruptibleResult for Result<T>

source§

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.