pub struct RecoveryInfo {
pub dead_pid: u32,
pub recovered_name: Option<String>,
pub command_count: usize,
}Expand description
Information about a recovered stale session.
Fields§
§dead_pid: u32PID of the dead process
recovered_name: Option<String>Name of the recovered session (if any)
command_count: usizeNumber of commands in the recovered session
Trait Implementations§
Auto Trait Implementations§
impl Freeze for RecoveryInfo
impl RefUnwindSafe for RecoveryInfo
impl Send for RecoveryInfo
impl Sync for RecoveryInfo
impl Unpin for RecoveryInfo
impl UnwindSafe for RecoveryInfo
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