#[non_exhaustive]pub enum AttachOutcome {
Attached,
AlreadyAttached,
Exited,
}Expand description
Result of adding a process to an existing recording.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Attached
The process was attached.
AlreadyAttached
The same live process was already attached.
Exited
The process exited before attachment completed.
Trait Implementations§
Source§impl Clone for AttachOutcome
impl Clone for AttachOutcome
Source§fn clone(&self) -> AttachOutcome
fn clone(&self) -> AttachOutcome
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for AttachOutcome
Source§impl Debug for AttachOutcome
impl Debug for AttachOutcome
impl Eq for AttachOutcome
Source§impl Hash for AttachOutcome
impl Hash for AttachOutcome
Source§impl PartialEq for AttachOutcome
impl PartialEq for AttachOutcome
impl StructuralPartialEq for AttachOutcome
Auto Trait Implementations§
impl Freeze for AttachOutcome
impl RefUnwindSafe for AttachOutcome
impl Send for AttachOutcome
impl Sync for AttachOutcome
impl Unpin for AttachOutcome
impl UnsafeUnpin for AttachOutcome
impl UnwindSafe for AttachOutcome
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