Type Alias interprocess::error::FromFdError

source ·
pub type FromFdError<E = NoDetails> = ConversionError<OwnedFd, E>;
Available on Unix only.
Expand description

Error type of TryFrom<OwnedFd> conversions.

Aliased Type§

struct FromFdError<E = NoDetails> {
    pub details: E,
    pub cause: Option<Error>,
    pub source: Option<OwnedFd>,
}

Fields§

§details: E

Extra information about the error.

§cause: Option<Error>

The underlying OS error, if any.

§source: Option<OwnedFd>

Ownership of the input of the conversion.