pub trait UnixFDListExtManual: Sized {
    fn append<T: AsRawFd>(&self, fd: T) -> Result<i32, Error>;
    fn get(&self, index_: i32) -> Result<RawFd, Error>;
    fn peek_fds(&self) -> Vec<RawFd>;
    fn steal_fds(&self) -> Vec<RawFd>;
}

Required methods

Implementors