AsFd

Trait AsFd 

1.63.0 · Source
pub trait AsFd {
    // Required method
    fn as_fd(&self) -> BorrowedFd<'_>;
}
Expand description

A trait to borrow the file descriptor from an underlying object.

This is only available on unix platforms and must be imported in order to call the method. Windows platforms have a corresponding AsHandle and AsSocket set of traits.

Required Methods§

1.63.0 · Source

fn as_fd(&self) -> BorrowedFd<'_>

Borrows the file descriptor.

§Example
use std::fs::File;

let mut f = File::open("foo.txt")?;
let borrowed_fd: BorrowedFd<'_> = f.as_fd();

Implementors§

§

impl AsFd for Receiver

Available on Unix only.
§

impl AsFd for Sender

Available on Unix only.
§

impl AsFd for compio::fs::File

Available on Unix only.
§

impl AsFd for compio::net::TcpListener

Available on Unix only.
§

impl AsFd for compio::net::TcpStream

Available on Unix only.
§

impl AsFd for compio::net::UdpSocket

Available on Unix only.
§

impl AsFd for compio::net::UnixListener

Available on Unix only.
§

impl AsFd for compio::net::UnixStream

Available on Unix only.
§

impl AsFd for compio::process::ChildStderr

§

impl AsFd for compio::process::ChildStdin

§

impl AsFd for compio::process::ChildStdout

Source§

impl AsFd for Dir

1.63.0 · Source§

impl AsFd for std::fs::File

Available on non-target_os=trusty only.
1.87.0 · Source§

impl AsFd for std::io::pipe::PipeReader

Available on non-target_os=trusty only.
1.87.0 · Source§

impl AsFd for std::io::pipe::PipeWriter

Available on non-target_os=trusty only.
1.63.0 · Source§

impl AsFd for Stderr

1.63.0 · Source§

impl AsFd for Stdin

1.63.0 · Source§

impl AsFd for Stdout

1.63.0 · Source§

impl AsFd for std::net::tcp::TcpListener

Available on non-target_os=trusty only.
1.63.0 · Source§

impl AsFd for std::net::tcp::TcpStream

Available on non-target_os=trusty only.
1.63.0 · Source§

impl AsFd for std::net::udp::UdpSocket

Available on non-target_os=trusty only.
1.63.0 · Source§

impl AsFd for UnixDatagram

1.63.0 · Source§

impl AsFd for std::os::unix::net::listener::UnixListener

1.63.0 · Source§

impl AsFd for std::os::unix::net::stream::UnixStream

1.63.0 · Source§

impl AsFd for std::process::ChildStderr

1.63.0 · Source§

impl AsFd for std::process::ChildStdin

1.63.0 · Source§

impl AsFd for std::process::ChildStdout

1.63.0 · Source§

impl AsFd for BorrowedFd<'_>

1.63.0 · Source§

impl AsFd for OwnedFd

§

impl AsFd for PipeReader

§

impl AsFd for PipeWriter

§

impl AsFd for Poller

§

impl AsFd for Socket

1.63.0 · Source§

impl<'a> AsFd for StderrLock<'a>

1.63.0 · Source§

impl<'a> AsFd for StdinLock<'a>

1.63.0 · Source§

impl<'a> AsFd for StdoutLock<'a>

§

impl<'fd> AsFd for PollFd<'fd>

Available on non-Windows only.
Source§

impl<F> AsFd for NamedTempFile<F>
where F: AsFd,

Available on Unix or WASI only.
1.63.0 · Source§

impl<T> AsFd for &T
where T: AsFd + ?Sized,

1.63.0 · Source§

impl<T> AsFd for &mut T
where T: AsFd + ?Sized,

1.64.0 · Source§

impl<T> AsFd for Box<T>
where T: AsFd + ?Sized,

1.69.0 · Source§

impl<T> AsFd for Rc<T>
where T: AsFd + ?Sized,

Source§

impl<T> AsFd for UniqueRc<T>
where T: AsFd + ?Sized,

1.64.0 · Source§

impl<T> AsFd for Arc<T>
where T: AsFd + ?Sized,

This impl allows implementing traits that require AsFd on Arc.

use std::net::UdpSocket;
use std::sync::Arc;

trait MyTrait: AsFd {}
impl MyTrait for Arc<UdpSocket> {}
impl MyTrait for Box<UdpSocket> {}
§

impl<T> AsFd for AsyncFd<T>
where T: AsFd,

§

impl<T> AsFd for compio::net::PollFd<T>
where T: AsFd,

§

impl<T> AsFd for SharedFd<T>
where T: AsFd,