Enum HandleUpdateKind
pub enum HandleUpdateKind {
WriteReady,
ReadReady,
Disconnected,
NewConnection {
new_handle: u64,
},
}
Variants§
WriteReady
This handle is ready for data to be written
ReadReady
This handle is ready to read, and has bytes in que
Disconnected
This handle has disconnected
NewConnection
This handle has accepted a new connection
Trait Implementations§
§impl Clone for HandleUpdateKind
impl Clone for HandleUpdateKind
§fn clone(&self) -> HandleUpdateKind
fn clone(&self) -> HandleUpdateKind
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 moreAuto Trait Implementations§
impl Freeze for HandleUpdateKind
impl RefUnwindSafe for HandleUpdateKind
impl Send for HandleUpdateKind
impl Sync for HandleUpdateKind
impl Unpin for HandleUpdateKind
impl UnwindSafe for HandleUpdateKind
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