pub enum ProcessType {
Attached,
Created,
}
Expand description
The qAttached
packet lets the client distinguish between
attached and created processes, so that it knows whether to send a
detach request when disconnecting.
Variants§
Attached
The process already existed and was attached to.
Created
The process was created by the server.
Trait Implementations§
Source§impl Clone for ProcessType
impl Clone for ProcessType
Source§fn clone(&self) -> ProcessType
fn clone(&self) -> ProcessType
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 ProcessType
impl Debug for ProcessType
impl Copy for ProcessType
Auto Trait Implementations§
impl Freeze for ProcessType
impl RefUnwindSafe for ProcessType
impl Send for ProcessType
impl Sync for ProcessType
impl Unpin for ProcessType
impl UnwindSafe for ProcessType
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