pub trait UnixFDMessageExt: 'static {
    // Required method
    fn fd_list(&self) -> UnixFDList;
}
Available on Unix only.
Expand description

Trait containing all UnixFDMessage methods.

Implementors

UnixFDMessage

Required Methods§

source

fn fd_list(&self) -> UnixFDList

Gets the UnixFDList contained in self. This function does not return a reference to the caller, but the returned list is valid for the lifetime of self.

Returns

the UnixFDList from self

Implementors§