pub enum NamedPipeChange {
Appeared(NamedPipeInfo),
Removed(NamedPipeInfo),
}Expand description
Change detected between named pipe snapshots.
Variants§
Appeared(NamedPipeInfo)
A pipe is present in the current snapshot but was absent previously.
Removed(NamedPipeInfo)
A pipe disappeared since the previous snapshot.
Trait Implementations§
Source§impl Clone for NamedPipeChange
impl Clone for NamedPipeChange
Source§fn clone(&self) -> NamedPipeChange
fn clone(&self) -> NamedPipeChange
Returns a duplicate 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 NamedPipeChange
impl RefUnwindSafe for NamedPipeChange
impl Send for NamedPipeChange
impl Sync for NamedPipeChange
impl Unpin for NamedPipeChange
impl UnsafeUnpin for NamedPipeChange
impl UnwindSafe for NamedPipeChange
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