pub trait UnixFDListExtManual:
Sealed
+ IsA<UnixFDList>
+ Sized {
// Provided methods
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> ⓘ { ... }
}
Provided Methods§
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> ⓘ
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.