pub struct ProcessInfo {
pub process_ips: Vec<String>,
pub tag_registry: TagRegistry,
pub dead_count: Rc<Cell<usize>>,
}Expand description
Process-related state for fault injection targeting.
Fields§
§process_ips: Vec<String>Server process IP addresses.
tag_registry: TagRegistryTag registry mapping process IPs to their resolved tags.
dead_count: Rc<Cell<usize>>Shared count of currently dead (killed but not yet restarted) processes.
Auto Trait Implementations§
impl Freeze for ProcessInfo
impl !RefUnwindSafe for ProcessInfo
impl !Send for ProcessInfo
impl !Sync for ProcessInfo
impl Unpin for ProcessInfo
impl UnsafeUnpin for ProcessInfo
impl !UnwindSafe for ProcessInfo
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