pub type FromFdError<E = NoDetails> = ConversionError<OwnedFd, E>;Expand description
Error type of TryFrom<OwnedFd> conversions.
Aliased Type§
pub struct FromFdError<E = NoDetails> {
pub details: E,
pub cause: Option<Error>,
pub source: Option<OwnedFd>,
}Fields§
§details: EExtra information about the error.
cause: Option<Error>The underlying OS error, if any.
source: Option<OwnedFd>Ownership of the input of the conversion.