Trait argdata::fd::ConvertFd[][src]

pub trait ConvertFd {
    fn convert_fd(&self, raw: u32) -> Result<Fd, InvalidFd>;
}

Something that can convert encoded fd numbers to actual Fds.

Required Methods

Converts an encoded fd number to an actual Fd.

Implementations on Foreign Types

impl<'a, T: ?Sized> ConvertFd for &'a T where
    T: ConvertFd + 'a, 
[src]

Implementors