pub struct RWHandle<T> { /* private fields */ }
Expand description
A Handle
that receives notifications when it is readable/writable.
Implementations§
Source§impl<T> RWHandle<T>where
T: AsHandleRef,
impl<T> RWHandle<T>where
T: AsHandleRef,
Sourcepub fn new(handle: T) -> Self
pub fn new(handle: T) -> Self
Creates a new RWHandle
object which will receive notifications when
the underlying handle becomes readable, writable, or closes.
§Panics
If called outside the context of an active async executor.
Sourcepub fn into_inner(self) -> T
pub fn into_inner(self) -> T
Consumes self
and returns the underlying handle.
Sourcepub fn is_closed(&self) -> bool
pub fn is_closed(&self) -> bool
Returns true if the object received the OBJECT_PEER_CLOSED
signal.
Sourcepub fn on_closed(&self) -> OnSignalsRef<'_>
pub fn on_closed(&self) -> OnSignalsRef<'_>
Returns a future that completes when is_closed()
is true.
Trait Implementations§
Source§impl<T> ReadableHandle for RWHandle<T>where
T: AsHandleRef,
impl<T> ReadableHandle for RWHandle<T>where
T: AsHandleRef,
Source§fn poll_readable(
&self,
cx: &mut Context<'_>,
) -> Poll<Result<ReadableState, Status>>
fn poll_readable( &self, cx: &mut Context<'_>, ) -> Poll<Result<ReadableState, Status>>
If the object is ready for reading, returns
Ready
with the readable
state. If the implementor returns Pending, it should first ensure that
need_readable
is called. Read moreSource§fn need_readable(&self, cx: &mut Context<'_>) -> Poll<Result<(), Status>>
fn need_readable(&self, cx: &mut Context<'_>) -> Poll<Result<(), Status>>
Arranges for the current task to be woken when the object receives an
OBJECT_READABLE
or OBJECT_PEER_CLOSED
signal. This can return
Poll::Ready if the object has already been signaled in which case the
waker will not be woken and it is the caller’s responsibility to not
lose the signal.Source§impl<T> WritableHandle for RWHandle<T>where
T: AsHandleRef,
impl<T> WritableHandle for RWHandle<T>where
T: AsHandleRef,
Source§fn poll_writable(
&self,
cx: &mut Context<'_>,
) -> Poll<Result<WritableState, Status>>
fn poll_writable( &self, cx: &mut Context<'_>, ) -> Poll<Result<WritableState, Status>>
If the object is ready for writing, returns
Ready
with the writable
state. If the implementor returns Pending, it should first ensure that
need_writable
is called. Read moreSource§fn need_writable(&self, cx: &mut Context<'_>) -> Poll<Result<(), Status>>
fn need_writable(&self, cx: &mut Context<'_>) -> Poll<Result<(), Status>>
Arranges for the current task to be woken when the object receives an
OBJECT_WRITABLE
or OBJECT_PEER_CLOSED
signal. This can return
Poll::Ready if the object has already been signaled in which case the
waker will not be woken and it is the caller’s responsibility to not
lose the signal.Auto Trait Implementations§
impl<T> Freeze for RWHandle<T>where
T: Freeze,
impl<T> !RefUnwindSafe for RWHandle<T>
impl<T> Send for RWHandle<T>where
T: Send,
impl<T> Sync for RWHandle<T>where
T: Sync,
impl<T> Unpin for RWHandle<T>where
T: Unpin,
impl<T> !UnwindSafe for RWHandle<T>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more