Type Alias SetFdResult

Source
pub type SetFdResult = Result<(), SetFdError>;
Expand description

Represents the result of setting a flag to file descriptor through syscalls

Aliased Type§

pub enum SetFdResult {
    Ok(()),
    Err(SetFdError),
}

Variants§

§1.0.0

Ok(())

Contains the success value

§1.0.0

Err(SetFdError)

Contains the error value