[−][src]Struct mio::unix::SourceFd
Adapter for RawFd
providing an event::Source
implementation.
SourceFd
enables registering any type with an FD with Poll
.
While only implementations for TCP and UDP are provided, Mio supports
registering any FD that can be registered with the underlying OS selector.
SourceFd
provides the necessary bridge.
Note that SourceFd
takes a &RawFd
. This is because SourceFd
does
not take ownership of the FD. Specifically, it will not manage any
lifecycle related operations, such as closing the FD on drop. It is expected
that the SourceFd
is constructed right before a call to
Registry::register
. See the examples for more detail.
Examples
Basic usage.
ⓘThis example is not tested
use mio::{Interest, Poll, Token}; use mio::unix::SourceFd; use std::os::unix::io::AsRawFd; use std::net::TcpListener; // Bind a std listener let listener = TcpListener::bind("127.0.0.1:0")?; let poll = Poll::new()?; // Register the listener poll.registry().register( &mut SourceFd(&listener.as_raw_fd()), Token(0), Interest::READABLE)?;
Implementing event::Source
for a custom type backed by a RawFd
.
ⓘThis example is not tested
use mio::{event, Interest, Registry, Token}; use mio::unix::SourceFd; use std::os::unix::io::RawFd; use std::io; pub struct MyIo { fd: RawFd, } impl event::Source for MyIo { fn register(&mut self, registry: &Registry, token: Token, interests: Interest) -> io::Result<()> { SourceFd(&self.fd).register(registry, token, interests) } fn reregister(&mut self, registry: &Registry, token: Token, interests: Interest) -> io::Result<()> { SourceFd(&self.fd).reregister(registry, token, interests) } fn deregister(&mut self, registry: &Registry) -> io::Result<()> { SourceFd(&self.fd).deregister(registry) } }
Trait Implementations
Auto Trait Implementations
impl<'a> RefUnwindSafe for SourceFd<'a>
impl<'a> Send for SourceFd<'a>
impl<'a> Sync for SourceFd<'a>
impl<'a> Unpin for SourceFd<'a>
impl<'a> UnwindSafe for SourceFd<'a>
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,