pub trait UnixFDListExtManual: IsA<UnixFDList> + Sized {
// Provided methods
fn append(&self, fd: impl AsFd) -> Result<i32, Error> { ... }
fn get(&self, index_: i32) -> Result<OwnedFd, Error> { ... }
fn peek_fds(&self) -> Vec<RawFd> ⓘ { ... }
fn steal_fds(&self) -> Vec<RawFd> ⓘ { ... }
}Provided Methods§
fn append(&self, fd: impl AsFd) -> Result<i32, Error>
fn get(&self, index_: i32) -> Result<OwnedFd, 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.