Enum fuchsia_async::ReadableState
source · pub enum ReadableState {
Readable,
Closed,
ReadableAndClosed,
}
Expand description
State of an object when it is ready for reading.
Variants§
Readable
Received OBJECT_READABLE
, or optimistically assuming the object is readable.
Closed
Received OBJECT_PEER_CLOSED
.
ReadableAndClosed
Both Readable
and Closed
apply.
Trait Implementations§
source§impl Clone for ReadableState
impl Clone for ReadableState
source§fn clone(&self) -> ReadableState
fn clone(&self) -> ReadableState
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for ReadableState
impl Debug for ReadableState
source§impl PartialEq for ReadableState
impl PartialEq for ReadableState
source§fn eq(&self, other: &ReadableState) -> bool
fn eq(&self, other: &ReadableState) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for ReadableState
impl Eq for ReadableState
impl StructuralEq for ReadableState
impl StructuralPartialEq for ReadableState
Auto Trait Implementations§
impl RefUnwindSafe for ReadableState
impl Send for ReadableState
impl Sync for ReadableState
impl Unpin for ReadableState
impl UnwindSafe for ReadableState
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